💚 Fix ARM build
Some checks failed
ci / docker (push) Failing after 2m26s
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s

This commit is contained in:
Finn Christiansen 2024-06-12 22:52:52 +02:00
parent a4c1456f99
commit fc0728c756
2 changed files with 3 additions and 2 deletions

View file

@ -31,8 +31,7 @@ jobs:
with:
context: .
push: true
# platforms: linux/amd64,linux/arm64 # ARM disabled for now: error: command 'gcc' failed: No such file or directory
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
tags: code.f2n.me/finn/matrix-bot-praying-times:latest
- name: Inspect
run: |

View file

@ -3,6 +3,8 @@ FROM python:3.12-alpine
WORKDIR /bot
RUN apk update && apk add python3-dev gcc libc-dev
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt