💚 Fix ARM build and startup of container
All checks were successful
ci / docker (push) Successful in 4m17s
Python formatting PEP8 / Python-PEP8 (push) Successful in 14s

This commit is contained in:
Finn Christiansen 2024-06-12 22:59:00 +02:00
parent fc0728c756
commit 3d602eacf9

View file

@ -3,11 +3,11 @@ FROM python:3.12-alpine
WORKDIR /bot
RUN apk update && apk add python3-dev gcc libc-dev
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", "bot.py"]
CMD ["python", "-m", "matrix_bot_praying_times"]