Spaces:
Build error
Build error
File size: 174 Bytes
12f4bef |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install -r Requirements.txt
EXPOSE 8080
CMD streamlit run --server.port 8080 --server.enableCORS false streamlit_app.py |