summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉmilien Devos <contact@emiliendevos.be>2022-07-19 09:12:50 +0200
committerGitHub <noreply@github.com>2022-07-19 09:12:50 +0200
commit5e090778aef347e20e118e54073b5b6eb5035ebd (patch)
tree7a19335685dba80f862e4d566482acfa0f9a2915
parent88007a08f20bda3891986312760d83adbdb800e5 (diff)
downloadinvidious-5e090778aef347e20e118e54073b5b6eb5035ebd.tar.gz
invidious-5e090778aef347e20e118e54073b5b6eb5035ebd.tar.bz2
invidious-5e090778aef347e20e118e54073b5b6eb5035ebd.zip
Use alpine 3.16 for crystal 1.4.1
Until crystal 1.5 has been tested.
-rw-r--r--docker/Dockerfile.arm646
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64
index a703e870..35d3fa7b 100644
--- a/docker/Dockerfile.arm64
+++ b/docker/Dockerfile.arm64
@@ -1,5 +1,5 @@
-FROM alpine:edge AS builder
-RUN apk add --no-cache 'crystal=1.4.1-r1' shards sqlite-static yaml-static yaml-dev libxml2-dev zlib-static openssl-libs-static openssl-dev musl-dev
+FROM alpine:3.16 AS builder
+RUN apk add --no-cache 'crystal=1.4.1-r0' shards sqlite-static yaml-static yaml-dev libxml2-dev zlib-static openssl-libs-static openssl-dev musl-dev
ARG release
@@ -34,7 +34,7 @@ RUN if [ ${release} == 1 ] ; then \
--link-flags "-lxml2 -llzma"; \
fi
-FROM alpine:edge
+FROM alpine:3.16
RUN apk add --no-cache librsvg ttf-opensans
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \