summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorEmilien Devos <contact@emiliendevos.be>2022-01-09 22:27:22 +0100
committerEmilien Devos <contact@emiliendevos.be>2022-01-09 22:27:22 +0100
commitd928b9eaadc8298f2e92a766fdd10c79e6048858 (patch)
tree2981d73f1f538d8308ef9134a07c33c649e672d8 /docker
parent790b7afccaeb880e8b77c1df6a4cc6654c222006 (diff)
downloadinvidious-d928b9eaadc8298f2e92a766fdd10c79e6048858.tar.gz
invidious-d928b9eaadc8298f2e92a766fdd10c79e6048858.tar.bz2
invidious-d928b9eaadc8298f2e92a766fdd10c79e6048858.zip
switch to alpine 3.15 for using crystal 1.2.2
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile.arm644
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64
index 4d5d46bf..d2955c7c 100644
--- a/docker/Dockerfile.arm64
+++ b/docker/Dockerfile.arm64
@@ -1,4 +1,4 @@
-FROM alpine:edge AS builder
+FROM alpine:3.15 AS builder
RUN apk add --no-cache 'crystal=1.2.2-r0' shards sqlite-static yaml-static yaml-dev libxml2-dev zlib-static openssl-libs-static openssl-dev musl-dev
ARG release
@@ -29,7 +29,7 @@ RUN if [ ${release} == 1 ] ; then \
--link-flags "-lxml2 -llzma"; \
fi
-FROM alpine:edge
+FROM alpine:3.15
RUN apk add --no-cache librsvg ttf-opensans
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \