Spaces:
Sleeping
Sleeping
Delete Dockerfile
Browse files- Dockerfile +0 -18
Dockerfile
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
# Use official Python image
|
| 2 |
-
FROM python:3.10
|
| 3 |
-
|
| 4 |
-
# Set working directory
|
| 5 |
-
WORKDIR /app
|
| 6 |
-
|
| 7 |
-
# Copy all files
|
| 8 |
-
COPY . .
|
| 9 |
-
|
| 10 |
-
# Install dependencies
|
| 11 |
-
RUN pip install --upgrade pip
|
| 12 |
-
RUN pip install -r requirements.txt
|
| 13 |
-
|
| 14 |
-
# Expose Streamlit port
|
| 15 |
-
EXPOSE 7860
|
| 16 |
-
|
| 17 |
-
# Run Streamlit app
|
| 18 |
-
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|