12 lines
146 B
Plaintext
Raw Permalink Normal View History

2024-03-27 13:31:27 +01:00
# Dockerfile
2025-02-24 23:28:30 +00:00
FROM python:3.13-slim
2024-03-27 13:31:27 +01:00
WORKDIR /app
COPY requirements.txt .
RUN pip install requests
COPY player.py .
CMD ["python", "player.py"]