Skip to content

Commit

Permalink
Merge pull request #84 from owncloud/use-alpine-latest
Browse files Browse the repository at this point in the history
Use alpine:latest instead of alpine:edge in docker builds
  • Loading branch information
butonic authored Jul 23, 2020
2 parents cee6579 + 1665ee5 commit db84726
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/use-alpine-latest.md
Original file line number Diff line number Diff line change
@@ -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-hello/pull/84
2 changes: 1 addition & 1 deletion docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amd64/alpine:edge
FROM amd64/alpine:latest

RUN apk update && \
apk upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.linux.arm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v6/alpine:edge
FROM arm32v6/alpine:latest

RUN apk update && \
apk upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/alpine:edge
FROM arm64v8/alpine:latest

RUN apk update && \
apk upgrade && \
Expand Down

0 comments on commit db84726

Please sign in to comment.