Skip to content
This repository was archived by the owner on Jan 27, 2021. It is now read-only.

Commit 614ddec

Browse files
authored
Merge pull request #39 from owncloud/use-alpine-latest
Use alpine:latest instead of alpine:edge in docker builds
2 parents a4a31db + f8a7020 commit 614ddec

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bugfix: build docker images with alpine:latest instead of alpine:edge
2+
3+
ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.
4+
5+
https://github.com/owncloud/ocis-settings/pull/39

docker/Dockerfile.linux.amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/alpine:edge
1+
FROM amd64/alpine:latest
22

33
RUN apk update && \
44
apk upgrade && \

docker/Dockerfile.linux.arm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM arm32v6/alpine:edge
1+
FROM arm32v6/alpine:latest
22

33
RUN apk update && \
44
apk upgrade && \

docker/Dockerfile.linux.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM arm64v8/alpine:edge
1+
FROM arm64v8/alpine:latest
22

33
RUN apk update && \
44
apk upgrade && \

0 commit comments

Comments
 (0)