Add back ARM64 support - Thanks to Opnxng

This commit is contained in:
TheFrenchGhosty 2023-10-14 15:14:15 +02:00
parent 6725c09b63
commit 2e0c9319da
No known key found for this signature in database
GPG key ID: 4E616F0FFE25B75B
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ jobs:
with:
context: .
file: docker/Dockerfile
platforms: linux/amd64 #,linux/arm64/v8
platforms: linux/amd64,linux/arm64/v8
labels: quay.expires-after=24w
push: true
tags: quay.io/pussthecatorg/breezewiki:latest

View file

@ -1,6 +1,6 @@
FROM racket/racket:8.9
FROM debian:stable-slim
WORKDIR /app
RUN apt install -y --no-install-recommends git \
RUN apt install -y --no-install-recommends git racket ca-certificates curl sqlite3 \
&& apt autoclean -y \
&& apt autoremove -y \
&& rm -rf /var/lib/apt/lists/* \