mirror of
https://github.com/assenzostefano/epic-games-notifier-telegram.git
synced 2025-06-27 09:02:57 +02:00
12 lines
136 B
Docker
12 lines
136 B
Docker
FROM python:3.10-alpine
|
|
|
|
ENV BOT_TOKEN 0
|
|
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python", "./main.py" ]
|
|
|
|
EXPOSE 8080/tcp
|