Spaces:
Running
Running
Update Dockerfile
Browse files- 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
|
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
|