PlayChessVsAI / Dockerfile
mzimm003's picture
Allow multiple, distinct, sessions on server.
c609ed6
raw
history blame contribute delete
558 Bytes
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