diff options
| author | neobooru <50623835+neobooru@users.noreply.github.com> | 2021-06-01 17:51:49 +0200 |
|---|---|---|
| committer | neobooru <50623835+neobooru@users.noreply.github.com> | 2021-06-01 18:20:51 +0200 |
| commit | f497dca92fdd79bd76ba107abd09b88da4de4c0f (patch) | |
| tree | 965d2a8c6440d9ea9d3930b7cd04a506ed6b4a03 /server | |
| parent | 5ea9e27e483a01a5814d682134e753aedeaec305 (diff) | |
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
Diffstat (limited to 'server')
| -rw-r--r-- | server/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/Dockerfile b/server/Dockerfile index acc9b10..4beec1c 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 \ |