kangas-demo / Dockerfile
CalebCometML's picture
Update Dockerfile
ea67bac
raw
history blame
154 Bytes
FROM python:3.9
COPY requirements.txt /
RUN pip install -r /requirements.txt
WORKDIR /app
COPY ./ /app
RUN ls /app
CMD python3 /app/streamlit_test.py