fffiloni commited on
Commit
cc32198
·
1 Parent(s): 6ab4663

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -9,12 +9,9 @@ RUN apt-get update && \
9
  apt-get clean && \
10
  rm -rf /var/lib/apt/lists/*
11
 
12
- # Set Python 3.9 as the default
13
- RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3
14
-
15
  # Install pip for Python 3.9
16
  RUN wget https://bootstrap.pypa.io/get-pip.py && \
17
- python3 get-pip.py && \
18
  rm get-pip.py
19
 
20
  # Install Git
 
9
  apt-get clean && \
10
  rm -rf /var/lib/apt/lists/*
11
 
 
 
 
12
  # Install pip for Python 3.9
13
  RUN wget https://bootstrap.pypa.io/get-pip.py && \
14
+ python get-pip.py && \
15
  rm get-pip.py
16
 
17
  # Install Git