Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +17 -0
Dockerfile
CHANGED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use Python base image
|
2 |
+
FROM python:3.10-slim
|
3 |
+
|
4 |
+
# Set work directory
|
5 |
+
WORKDIR /code
|
6 |
+
|
7 |
+
# Copy files
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
# Install dependencies
|
11 |
+
RUN pip install --upgrade pip && pip install -r requirements.txt
|
12 |
+
|
13 |
+
# Expose the Flask port
|
14 |
+
EXPOSE 7860
|
15 |
+
|
16 |
+
# Run the app
|
17 |
+
CMD ["python", "app.py"]
|