tg_rss_bot/Dockerfile

13 lines
151 B
Docker
Raw Normal View History

FROM python:3.10-alpine
2022-07-21 21:14:56 +00:00
WORKDIR /bot
COPY . .
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED=1
2022-07-21 21:14:56 +00:00
ENTRYPOINT [ "python" ]
CMD [ "bot.py" ]