diff options
author | tcely <tcely@users.noreply.github.com> | 2019-05-31 10:53:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 10:53:33 -0400 |
commit | 449852b2408441d78c4d862c057c08ad9dbb246f (patch) | |
tree | 051888437df1538a78bce548dac71cc251a0c86e | |
parent | fa1d9e358558a4894ff1f0cc883a86466bf125f4 (diff) | |
download | docker-abuild-449852b2408441d78c4d862c057c08ad9dbb246f.tar.bz2 docker-abuild-449852b2408441d78c4d862c057c08ad9dbb246f.tar.xz |
Dockerfile: upgrade the installed packages
This is done before the cache is setup to keep the layer clean.
Resolves #23
-rw-r--r-- | Dockerfile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile.in b/Dockerfile.in index d02d113..2b58167 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -12,6 +12,7 @@ RUN rm /etc/apk/repositories && \ RUN apk add --update-cache \ alpine-conf \ alpine-sdk \ + && apk upgrade -a \ && setup-apkcache /var/cache/apk RUN adduser -D builder \ |