From 3d602eacf96027b3e24efdebbeb06f16631236bc Mon Sep 17 00:00:00 2001 From: Finn Christiansen Date: Wed, 12 Jun 2024 22:59:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix=20ARM=20build=20and=20startu?= =?UTF-8?q?p=20of=20container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b596d9..ce0950f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]