TW-Requests/tgbot_app/Dockerfile

11 lines
144 B
Docker
Raw Permalink Normal View History

2024-07-15 07:15:51 +00:00
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"]