Spaces:
Running
Running
| 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 |