Spaces:
Sleeping
Sleeping
File size: 558 Bytes
b798daa 69f55c7 b798daa 69f55c7 c609ed6 a4286ea 69f55c7 e7988f7 2017fc1 be8ef18 5347397 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM python:3.8.12
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN git clone https://github.com/mzimm003/Chess /home/user/Chess
RUN pip install /home/user/Chess
COPY --chown=user . /app
EXPOSE 8501
CMD streamlit run app.py \
--server.headless true \
--server.enableCORS false \
--server.enableXsrfProtection false \
--server.fileWatcherType none |