PronoteBot/Dockerfile
2023-12-20 20:39:14 +01:00

9 lines
170 B
Docker

FROM python:3.10-alpine
COPY getgrades.py .
COPY requirements.txt .
COPY .env .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u", "getgrades.py"]