Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +19 -11
Dockerfile
CHANGED
@@ -2,26 +2,34 @@ FROM python:3.9-slim
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
-
# Set timezone
|
6 |
ENV TZ=Europe/Paris
|
7 |
|
8 |
-
|
9 |
-
|
|
|
10 |
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
COPY requirements.txt ./
|
15 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
-
|
17 |
COPY src/ ./src/
|
18 |
|
19 |
-
|
|
|
|
|
20 |
|
21 |
ENV HOME=/app
|
|
|
|
|
|
|
|
|
22 |
|
23 |
-
|
24 |
-
RUN mkdir -p /app/submissions
|
25 |
|
26 |
-
|
27 |
-
ENTRYPOINT ["python", "src/streamlit_app.py"]
|
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
+
# Set the timezone to Central European Time
|
6 |
ENV TZ=Europe/Paris
|
7 |
|
8 |
+
# Install tzdata to apply timezone config
|
9 |
+
RUN apt-get update && apt-get install -y tzdata && \
|
10 |
+
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
11 |
|
12 |
+
|
13 |
+
RUN apt-get update && apt-get install -y \
|
14 |
+
build-essential \
|
15 |
+
curl \
|
16 |
+
software-properties-common \
|
17 |
+
git \
|
18 |
&& rm -rf /var/lib/apt/lists/*
|
19 |
|
20 |
COPY requirements.txt ./
|
|
|
|
|
21 |
COPY src/ ./src/
|
22 |
|
23 |
+
RUN pip3 install -r requirements.txt
|
24 |
+
|
25 |
+
EXPOSE 8501
|
26 |
|
27 |
ENV HOME=/app
|
28 |
+
ENV STREAMLIT_HOME=/app/.streamlit
|
29 |
+
|
30 |
+
# Create .streamlit config directory and make sure it's writable
|
31 |
+
RUN mkdir -p $STREAMLIT_HOME && chmod -R 777 $HOME
|
32 |
|
33 |
+
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
|
|
34 |
|
35 |
+
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
|