Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -4,7 +4,9 @@ FROM python:3.9-slim
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
# Copy requirements file
|
7 |
-
COPY requirements.txt
|
|
|
|
|
8 |
|
9 |
|
10 |
# Install Python dependencies
|
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
# Copy requirements file
|
7 |
+
COPY requirements.txt .
|
8 |
+
|
9 |
+
COPY . .
|
10 |
|
11 |
|
12 |
# Install Python dependencies
|