wordify / Dockerfile
Pietro Lesci
dockerize app
fca717d
raw
history blame
175 Bytes
FROM python:3.7
COPY . /var/app/
WORKDIR /var/app
RUN pip install --upgrade pip
RUN pip install streamlit==1.0
RUN pip install -r requirements.txt
CMD streamlit run ./app.py