Spaces:
Runtime error
Runtime error
File size: 151 Bytes
5bfe304 |
1 2 3 4 5 6 7 8 |
FROM python:3.8-slim-buster
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit","run"]
CMD ["app/app.py"]
|