diff --git a/Dockerfile b/Dockerfile index 66327f3..03cd52b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM alpine:3.9 -LABEL description "Rainloop is a simple, modern & fast web-based client" \ +LABEL description="Rainloop is a simple, modern & fast web-based client" \ maintainer="Werkspot " -ARG RAINLOOP_VERSION="1.12.1" +ARG RAINLOOP_VERSION="1.14.0" ARG RAINLOOP_GPG_KEYS="ED7C49D987DA4591" RUN apk add --no-cache --virtual .build-dependencies \ @@ -23,15 +23,15 @@ RUN apk add --no-cache --virtual .build-dependencies \ ; do \ echo "Fetching GPG key ${RAINLOOP_GPG_KEYS} from ${server}"; \ gpg --keyserver "${server}" --keyserver-options timeout=10 --recv-keys "${RAINLOOP_GPG_KEYS}" && found=yes && break; \ - done; \ - test -z "$found" && echo >&2 "error: failed to fetch GPG key ${RAINLOOP_GPG_KEYS}" && exit 1; \ - gpg --batch --verify rainloop-community.zip.asc rainloop-community.zip \ + done; \ + test -z "$found" && echo >&2 "error: failed to fetch GPG key ${RAINLOOP_GPG_KEYS}" && exit 1; \ + gpg --batch --verify rainloop-community.zip.asc rainloop-community.zip \ && mkdir /rainloop \ && unzip rainloop-community.zip -d /rainloop \ && find /rainloop -type d -exec chmod 755 {} \; \ && find /rainloop -type f -exec chmod 644 {} \; \ - && rm /rainloop/data/* \ + && rm /rainloop/data/* \ && chmod 0777 /rainloop/data FROM php:7.3-fpm-alpine