Skip to content

Commit

Permalink
Bump version to 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrastas committed Apr 21, 2020
1 parent 7f9bd7b commit b57bdf3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <technology@werkspot.com>"

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 \
Expand All @@ -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
Expand Down

0 comments on commit b57bdf3

Please sign in to comment.