miike-ai commited on
Commit
fe9e322
·
verified ·
1 Parent(s): 5bf0245

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -31,6 +31,8 @@ RUN apt-get update && \
31
  update-alternatives --set python3 /usr/bin/python3.12 && \
32
  # Install pip for Python 3.12
33
  curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12 && \
 
 
34
  # Install code-server
35
  curl -fsSL https://code-server.dev/install.sh | sh && \
36
  apt-get clean && \
 
31
  update-alternatives --set python3 /usr/bin/python3.12 && \
32
  # Install pip for Python 3.12
33
  curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12 && \
34
+ # Upgrade pip to latest version
35
+ python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel && \
36
  # Install code-server
37
  curl -fsSL https://code-server.dev/install.sh | sh && \
38
  apt-get clean && \