Use alpine:latest instead of alpine:edge in docker builds

This commit is contained in:
Benedikt Kulmann
2020-07-23 10:22:18 +02:00
parent a4a31db918
commit f8a7020c93
4 changed files with 8 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
Bugfix: build docker images with alpine:latest instead of alpine:edge
ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.
https://github.com/owncloud/ocis-settings/pull/39

View File

@@ -1,4 +1,4 @@
FROM amd64/alpine:edge
FROM amd64/alpine:latest
RUN apk update && \
apk upgrade && \

View File

@@ -1,4 +1,4 @@
FROM arm32v6/alpine:edge
FROM arm32v6/alpine:latest
RUN apk update && \
apk upgrade && \

View File

@@ -1,4 +1,4 @@
FROM arm64v8/alpine:edge
FROM arm64v8/alpine:latest
RUN apk update && \
apk upgrade && \