Spaces:
Sleeping
Sleeping
File size: 424 Bytes
1f51a3e 0561cd6 1f51a3e 34ff89b 0561cd6 7d683f2 475496e 9a4a6f3 80cfff2 9a4a6f3 2720b8d e382003 bd68cde e382003 1442ab1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.10
SHELL ["/bin/bash", "-c"]
RUN python -m venv venv
ENV env=hf
RUN source venv/bin/activate
RUN ls -a
RUN mkdir app
COPY . /app
WORKDIR /app
RUN ls -a
RUN rm deps/*.whl
RUN pip install -r requirements-base.txt
WORKDIR /app
EXPOSE 8501
CMD streamlit run dam_helper/app.py \
--server.headless true \
--server.enableCORS false \
--server.enableXsrfProtection false \
--server.fileWatcherType none |