Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -7,4 +7,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
+
# Expose the port
|
| 11 |
+
EXPOSE 7860
|
| 12 |
+
|
| 13 |
+
# Run the app
|
| 14 |
+
CMD ["python", "app.py"]
|