matrix-bot-praying-times/Dockerfile
Finn Christiansen 3d602eacf9
All checks were successful
ci / docker (push) Successful in 4m17s
Python formatting PEP8 / Python-PEP8 (push) Successful in 14s
💚 Fix ARM build and startup of container
2024-06-12 22:59:00 +02:00

13 lines
267 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 . .
CMD ["python", "-m", "matrix_bot_praying_times"]