diff options
author | Muh Muhten <muh.muhten@gmail.com> | 2016-02-19 22:54:51 -0500 |
---|---|---|
committer | Muh Muhten <muh.muhten@gmail.com> | 2016-02-19 23:07:20 -0500 |
commit | 5609585ec18ba11a7b139c8e65d55e3c65ac3028 (patch) | |
tree | 22968cb7013407f4139b71fd76d8b6a37599b3b9 /Dockerfile | |
parent | b7f3d94cd048cbad6bc406bcbd79b490ccd416a9 (diff) | |
download | gitea-5609585ec18ba11a7b139c8e65d55e3c65ac3028.tar.gz gitea-5609585ec18ba11a7b139c8e65d55e3c65ac3028.zip |
update alpine package dependencies
- s6 is in main in 3.3, so we no longer need to mangle the repos file
- official image is periodically updated, so it's not preferred to do
upgrades downstream (usually harmless, but inelegant)
- apk-tools in 3.3 supports --no-cache to avoid leaving the APKINDEX
files in the image
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index af29957c00..0975135a10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,8 @@ MAINTAINER jp@roemer.im # Install system utils & Gogs runtime dependencies ADD https://github.com/tianon/gosu/releases/download/1.6/gosu-amd64 /usr/sbin/gosu -RUN echo "@edge http://dl-4.alpinelinux.org/alpine/edge/main" | tee -a /etc/apk/repositories \ - && apk -U --no-progress upgrade \ - && apk -U --no-progress add ca-certificates bash git linux-pam s6@edge curl openssh socat \ - && chmod +x /usr/sbin/gosu +RUN chmod +x /usr/sbin/gosu \ + && apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat ENV GOGS_CUSTOM /data/gogs |