Spaces:
Runtime error
Runtime error
Delete Dockerfile
Browse files- Dockerfile +0 -23
Dockerfile
DELETED
|
@@ -1,23 +0,0 @@
|
|
| 1 |
-
# Base Python image
|
| 2 |
-
FROM python:3.10-slim
|
| 3 |
-
|
| 4 |
-
# Install OS dependencies
|
| 5 |
-
RUN apt-get update && apt-get install -y \
|
| 6 |
-
libgl1-mesa-glx \
|
| 7 |
-
&& rm -rf /var/lib/apt/lists/*
|
| 8 |
-
|
| 9 |
-
# Set working directory
|
| 10 |
-
WORKDIR /app
|
| 11 |
-
|
| 12 |
-
# Copy all files
|
| 13 |
-
COPY . .
|
| 14 |
-
|
| 15 |
-
# Install Python dependencies
|
| 16 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 17 |
-
|
| 18 |
-
# Expose port (Streamlit default)
|
| 19 |
-
EXPOSE 8501
|
| 20 |
-
|
| 21 |
-
# Run Streamlit app
|
| 22 |
-
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|