mirror of
https://github.com/assenzostefano/epic-games-notifier-telegram.git
synced 2025-02-18 20:20:37 +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" ] |