mirror of
https://github.com/assenzostefano/epic-games-notifier-telegram.git
synced 2025-02-17 03:40:45 +01:00
13 lines
161 B
Docker
13 lines
161 B
Docker
|
FROM python:3.10-alpine
|
||
|
|
||
|
ENV BOT_TOKEN 0
|
||
|
|
||
|
RUN mkdir -p /app
|
||
|
|
||
|
VOLUME [ "/app/data" ]
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD [ "python", "./main.py" ]
|