Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ FROM python:3.9-slim
|
|
5 |
WORKDIR .
|
6 |
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
-
COPY .
|
9 |
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
@@ -17,4 +17,4 @@ RUN pip install ollama
|
|
17 |
EXPOSE 8000
|
18 |
|
19 |
# Run app.py when the container launches
|
20 |
-
CMD ["python", "app
|
|
|
5 |
WORKDIR .
|
6 |
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
+
COPY . .
|
9 |
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
17 |
EXPOSE 8000
|
18 |
|
19 |
# Run app.py when the container launches
|
20 |
+
CMD ["python", "app.py"]
|