mirror of
https://github.com/NohamR/PronoteBot.git
synced 2025-05-23 16:38:59 +00:00
9 lines
170 B
Docker
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"] |