Niv03's picture
Add docker file
c1f8c6c
raw
history blame
114 Bytes
FROM python
WORKDIR app/
COPY . app/
RUN pip3 install -r requirements.txt
CMD ["streamlit", "run", "app.py"]