Add back ARM64 support - Thanks to Opnxng
This commit is contained in:
parent
6725c09b63
commit
2e0c9319da
2 changed files with 3 additions and 3 deletions
2
.github/workflows/container-release.yml
vendored
2
.github/workflows/container-release.yml
vendored
|
@ -41,7 +41,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: docker/Dockerfile
|
file: docker/Dockerfile
|
||||||
platforms: linux/amd64 #,linux/arm64/v8
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
labels: quay.expires-after=24w
|
labels: quay.expires-after=24w
|
||||||
push: true
|
push: true
|
||||||
tags: quay.io/pussthecatorg/breezewiki:latest
|
tags: quay.io/pussthecatorg/breezewiki:latest
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM racket/racket:8.9
|
FROM debian:stable-slim
|
||||||
WORKDIR /app
|
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 autoclean -y \
|
||||||
&& apt autoremove -y \
|
&& apt autoremove -y \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
|
Loading…
Reference in a new issue