mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 17:24:06 +00:00
8 lines
110 B
Docker
Executable File
8 lines
110 B
Docker
Executable File
FROM python:3.8-buster
|
|
|
|
WORKDIR /src
|
|
|
|
COPY ./src/requirements.txt /src
|
|
RUN pip install -r ./requirements.txt
|
|
|