Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jul 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/pull/416
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