Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,9 @@
|
|
| 2 |
FROM python:3.10-slim
|
| 3 |
|
| 4 |
# Set the working directory in the container
|
| 5 |
-
WORKDIR /app
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Copy requirements.txt first (if it exists in the root directory)
|
| 8 |
COPY requirements.txt ./src/requirements.txt
|
|
|
|
| 2 |
FROM python:3.10-slim
|
| 3 |
|
| 4 |
# Set the working directory in the container
|
| 5 |
+
WORKDIR /app/src
|
| 6 |
+
|
| 7 |
+
|
| 8 |
|
| 9 |
# Copy requirements.txt first (if it exists in the root directory)
|
| 10 |
COPY requirements.txt ./src/requirements.txt
|