matrix-bot-praying-times/Dockerfile
Finn Christiansen 1f1ae5077e
Some checks failed
ci / docker (push) Successful in 4m43s
Python formatting PEP8 / Python-PEP8 (push) Failing after 13s
Added periodic reminders and included alembic migration in container
2024-06-16 22:45:24 +02:00

13 lines
252 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.12-alpine
WORKDIR /bot
RUN apk update && apk add python3-dev gcc libc-dev libffi-dev
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
ENTRYPOINT ["/bot/entrypoint.sh"]