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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,11 +10,11 @@ RUN apt-get update && \
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.9 1
14
 
15
  # Install pip for Python 3.9
16
  RUN wget https://bootstrap.pypa.io/get-pip.py && \
17
- python3.9 get-pip.py && \
18
  rm get-pip.py
19
 
20
  # Install Git
 
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