File size: 388 Bytes
1f51a3e
0561cd6
1f51a3e
34ff89b
0561cd6
7d683f2
475496e
 
 
2720b8d
 
bd68cde
1442ab1
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 rm deps/*.whl
RUN pip install -r requirements-base.txt
EXPOSE 8501
CMD streamlit run app.py \
    --server.headless true \
    --server.enableCORS false \
    --server.enableXsrfProtection false \
    --server.fileWatcherType none