FillTheBlanks / Dockerfile
ashishraics's picture
bug debug
9f7e51c
raw
history blame
134 Bytes
FROM python:3.9-slim-buster
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 8501
CMD ["streamlit","run","app.py"]