ethio_hydro / Dockerfile
poooja2012's picture
data folder
00ac9b2
raw history blame
No virus
553 Bytes
FROM python:3.9.12
WORKDIR /ethio_hydro
# Upgrade pip and install requirements
COPY requirements.txt requirements.txt
RUN pip install -U pip
RUN pip install -r requirements.txt
# Expose port you want your app on
EXPOSE 8501
# Copy app code and set working directory
COPY app.py app.py
COPY references references
COPY stlib stlib
COPY precipitation_function.py precipitation_function.py
COPY temperature_functions.py temperature_functions.py
COPY .streamlit .streamlit
# Run
RUN pip install streamlit
ENTRYPOINT ["streamlit", "run", "app.py"]