TW-Requests/tgbot_app/Dockerfile
2024-07-15 10:15:51 +03:00

11 lines
144 B
Docker

FROM python:3.11.4
COPY . /tg_bot
WORKDIR /tg_bot
EXPOSE 222
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3", "main.py"]