moriire commited on
Commit
d61f13e
·
verified ·
1 Parent(s): 6a2c0b6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -3
Dockerfile CHANGED
@@ -10,14 +10,11 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
10
  gnupg2 \
11
  wget
12
 
13
- # Add PPA for gcc-11, update packages, install gcc-11, g++-11, update pip and setuptools, install build-essential
14
- RUN add-apt-repository ppa:ubuntu-toolchain-r/test
15
  RUN apt update
16
  RUN apt install gcc-11 g++-11
17
  RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 60 --slave /usr/bin/g++ g++ /usr/bin/g++-11
18
  RUN pip install --upgrade pip
19
  RUN pip install --upgrade setuptools wheel
20
- RUN apt-get install build-essential
21
 
22
  WORKDIR /code
23
 
 
10
  gnupg2 \
11
  wget
12
 
 
 
13
  RUN apt update
14
  RUN apt install gcc-11 g++-11
15
  RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 60 --slave /usr/bin/g++ g++ /usr/bin/g++-11
16
  RUN pip install --upgrade pip
17
  RUN pip install --upgrade setuptools wheel
 
18
 
19
  WORKDIR /code
20