kangas-demo / Dockerfile
CalebCometML's picture
Update Dockerfile
4cc09a0
raw
history blame
150 Bytes
FROM python:3.9
COPY requirements.txt /
RUN pip install -r /requirements.txt
WORKDIR /app
COPY ./ /app
RUN netstat -lntu
CMD streamlit run app.py