Abhaykoul commited on
Commit
1bec907
·
verified ·
1 Parent(s): e3f9d3e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.9
2
 
3
  RUN useradd -m -u 1000 user
4
 
@@ -6,7 +6,7 @@ WORKDIR /app
6
 
7
  COPY --chown=user ./requirements.txt requirements.txt
8
 
9
- # Upgrade pip, setuptools, and wheel first
10
  RUN pip install --no-cache-dir --upgrade pip setuptools wheel
11
 
12
  # Install all dependencies except Webscout
 
1
+ FROM python:3.10 # Use Python 3.10 instead of 3.9
2
 
3
  RUN useradd -m -u 1000 user
4
 
 
6
 
7
  COPY --chown=user ./requirements.txt requirements.txt
8
 
9
+ # Upgrade pip, setuptools, and wheel
10
  RUN pip install --no-cache-dir --upgrade pip setuptools wheel
11
 
12
  # Install all dependencies except Webscout