adding CI and Dockerfile

pull/20/head
Dorian HODIN 5 months ago
parent ba319d6243
commit b981d6e105

@ -0,0 +1,11 @@
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install streamlit matplotlib pandas scikit-learn
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "home.py", "--server.port=8501", "--server.address=0.0.0.0"]

@ -17,4 +17,4 @@ def csv_value():
# Related Non-Motorist -> 166642
# Non-Motorist Substance Abuse -> 167788
# Circumstance -> 140746
return df
return df
Loading…
Cancel
Save