Skip to content

Commit

Permalink
Use alpine:latest instead of alpine:edge in docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Jul 23, 2020
1 parent 017eeb4 commit ce2d766
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-graph-explorer/pull/7
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 ce2d766

Please sign in to comment.