From e510f9db1b19ed68d9bd6606ac40ebee6bafd6ed Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Wed, 10 Oct 2018 20:08:41 -0400 Subject: [PATCH] Use alpine:latest instead of alpine:edge for base While investigating of wallabag/wallabag#3723: - I could not build wallabag docker image with edge - I succeeded in building with latest - building with latest resolved wallabag/wallabag#3723 Additionally, alpine recommends against using edge for end users ([0][]). [0]: https://wiki.alpinelinux.org/wiki/Edge --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79369e6..93aa017 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:edge +FROM alpine:latest LABEL maintainer "Marvin Steadfast "