Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Use Python 3.9 as the base image
|
| 2 |
-
FROM python:3.
|
| 3 |
|
| 4 |
# Set the working directory in the container
|
| 5 |
WORKDIR /app
|
|
@@ -10,7 +10,6 @@ COPY requirements.txt .
|
|
| 10 |
# Install the dependencies
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
| 13 |
-
RUN pip install --upgrade pip
|
| 14 |
|
| 15 |
|
| 16 |
# Copy the rest of the application into the container
|
|
|
|
| 1 |
# Use Python 3.9 as the base image
|
| 2 |
+
FROM python:3.10
|
| 3 |
|
| 4 |
# Set the working directory in the container
|
| 5 |
WORKDIR /app
|
|
|
|
| 10 |
# Install the dependencies
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
# Copy the rest of the application into the container
|