From f497dca92fdd79bd76ba107abd09b88da4de4c0f Mon Sep 17 00:00:00 2001 From: neobooru <50623835+neobooru@users.noreply.github.com> Date: Tue, 1 Jun 2021 17:51:49 +0200 Subject: [PATCH] server: update docker image base to alpine:3.13 We do this so that we don't have to use 'edge' packages, which aren't (always) ABI compatible --- server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index acc9b107..4beec1cf 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE_VERSION=3.12 +ARG ALPINE_VERSION=3.13 FROM alpine:$ALPINE_VERSION as prereqs @@ -20,7 +20,7 @@ RUN apk --no-cache add \ py3-tz \ py3-pyrfc3339 \ build-base \ - && apk --no-cache add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \ + && apk --no-cache add \ libheif \ libavif \ libheif-dev \