Spaces:
Runtime error
Runtime error
adityasugandhi
commited on
Commit
·
95e4875
1
Parent(s):
30343f7
- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
# Use an existing Docker image as a base
|
2 |
-
FROM python:3.
|
3 |
|
4 |
# Set the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the requirements file into the container at /app
|
8 |
-
COPY requirements.txt /requirements
|
9 |
|
10 |
# Install the dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
1 |
# Use an existing Docker image as a base
|
2 |
+
FROM python:3.10
|
3 |
|
4 |
# Set the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the requirements file into the container at /app
|
8 |
+
COPY requirements.txt /requirements.txt
|
9 |
|
10 |
# Install the dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|