tg_rss_bot/Dockerfile
mitsuha_s 6381661232
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
add other used environment variables
2022-07-25 22:47:30 +00:00

13 lines
201 B
Docker

FROM python:3.10-alpine
WORKDIR /bot
COPY . .
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED=1 RSSBOT_DSN=xxx RSSBOT_TG_TOKEN=xxx LOG_LEVEL=INFO
ENTRYPOINT [ "python" ]
CMD [ "bot.py" ]