Spaces:
Sleeping
Sleeping
Initial commit - clean setup for HF Space
Browse files- DockerFile.txt +3 -3
DockerFile.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
# Use full Python 3.11 image
|
| 2 |
FROM python:3.11
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
-
# Install OS dependencies
|
| 8 |
RUN apt-get update && apt-get install -y \
|
| 9 |
build-essential \
|
| 10 |
curl \
|
|
@@ -23,4 +23,4 @@ COPY . .
|
|
| 23 |
EXPOSE 8501
|
| 24 |
|
| 25 |
# Run Streamlit app
|
| 26 |
-
CMD ["streamlit", "run", "Graphs.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
|
|
|
| 1 |
+
# Use full Python 3.11 image
|
| 2 |
FROM python:3.11
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
+
# Install OS dependencies (without software-properties-common)
|
| 8 |
RUN apt-get update && apt-get install -y \
|
| 9 |
build-essential \
|
| 10 |
curl \
|
|
|
|
| 23 |
EXPOSE 8501
|
| 24 |
|
| 25 |
# Run Streamlit app
|
| 26 |
+
CMD ["streamlit", "run", "Graphs.py", "--server.port=8501", "--server.address=0.0.0.0"]
|