mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 09:14:07 +00:00
7 lines
109 B
Docker
7 lines
109 B
Docker
|
FROM python:3.8-buster
|
||
|
|
||
|
WORKDIR /src
|
||
|
|
||
|
COPY ./src/requirements.txt /src
|
||
|
RUN pip install -r ./requirements.txt
|