Spaces:
Sleeping
Sleeping
File size: 233 Bytes
1f51a3e 0561cd6 1f51a3e 0561cd6 7d683f2 90ad8f9 b964344 1f51a3e |
1 2 3 4 5 6 7 8 9 |
FROM python:3.10
SHELL ["/bin/bash", "-c"]
RUN python -m venv venv
RUN source venv/bin/activate
RUN ls -a
COPY ./requirements.txt requirements.txt
COPY ./deps/*.whl deps
RUN pip install -r requirements.txt
ENTRYPOINT streamlit app.py |