diff options
author | James Z.M. Gao <gaozm55@gmail.com> | 2019-01-08 10:03:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 10:03:19 +0800 |
commit | ee206034bb10031e053ece4af8038e4630a778f3 (patch) | |
tree | 838287176bbbe17a46e323f943d82ec8eba97f2c | |
parent | 7be45267b8b68cc86979fce33f86915ea60ac35f (diff) | |
download | davmail-ee206034bb10031e053ece4af8038e4630a778f3.tar.gz davmail-ee206034bb10031e053ece4af8038e4630a778f3.tar.bz2 davmail-ee206034bb10031e053ece4af8038e4630a778f3.tar.xz davmail-ee206034bb10031e053ece4af8038e4630a778f3.zip |
update davmail to 5.1.0
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ FROM jeanblanchard/java:8 -MAINTAINER James Z.M. Gao <gaozm55@gmail.com> +LABEL maintainer="James Z.M. Gao <gaozm55@gmail.com>" # Download -ADD http://downloads.sourceforge.net/project/davmail/davmail/5.0.0/davmail-5.0.0-2801.zip /opt/ +ADD http://downloads.sourceforge.net/project/davmail/davmail/5.1.0/davmail-5.1.0-2891.zip /opt/ COPY content / # untar file, add a non-root system user @@ -11,7 +11,7 @@ RUN set -ex \ && apk --update --no-progress upgrade \ && cd /opt \ && mkdir -p davmail \ - && unzip davmail-5.0.0-2801.zip -d davmail \ + && unzip davmail-5.1.0-2891.zip -d davmail \ && rm -rf /var/cache/apk/* /tmp/* /opt/davmail-* \ && adduser -S -u 500 -h /var/lib/davmail davmail \ && chmod 0644 /etc/davmail/* |