weather_app / Dockerfile
nathanlunceford's picture
re init w/ new
33ac719
raw
history blame contribute delete
196 Bytes
FROM python:3.9-slim
EXPOSE 8501
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]