Spaces:
Running
Running
File size: 307 Bytes
5e91e6a aadada8 ea2966b 3362772 0431503 d846058 98c6394 5e91e6a d846058 dbad070 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install flask flask-socketio flask-cors flask-limiter pyjwt bcrypt python-chess eventlet pyTelegramBotAPI
RUN apt-get update && apt-get install -y stockfish && \
ln -s /usr/games/stockfish /usr/bin/stockfish
EXPOSE 7860
CMD python /data/app.py |