tg_rss_bot/Dockerfile

13 lines
148 B
Docker
Raw Normal View History

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