mirror of
https://github.com/assenzostefano/epic-games-notifier-telegram.git
synced 2025-02-16 19:30:41 +01:00
9 lines
118 B
Docker
9 lines
118 B
Docker
FROM python:3.10-alpine
|
|
|
|
ENV BOT_TOKEN 0
|
|
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python", "./main.py" ] |