Make sure we do apk upgrade -a

Also base off 3.4 for consistency.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2016-11-24 21:07:00 +00:00
parent 106be2b6de
commit 8f375ddd48
3 changed files with 4 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
FROM alpine:edge
FROM alpine:3.4
COPY repositories /etc/apk/
RUN \
apk update && apk upgrade && \
apk update && apk upgrade -a && \
apk add --no-cache \
busybox-initscripts \
chrony \

View File

@@ -1,6 +1,6 @@
.PHONY: tag push
BASE=alpine:edge
BASE=alpine:3.4
IMAGE=alpine-base
default: push