bump to 4.10.2

This commit is contained in:
Carlos Panato 2019-03-17 13:55:17 +01:00
parent 90f5cace05
commit 5e3decc5d8
No known key found for this signature in database
GPG Key ID: E2379A61085D0517

View File

@ -2,7 +2,7 @@ FROM alpine:3.9
# Some ENV variables
ENV PATH="/mattermost/bin:${PATH}"
ENV MM_VERSION=4.10.1
ENV MM_VERSION=4.10.2
# Build argument to set Mattermost edition
ARG edition=enterprise
@ -35,7 +35,7 @@ RUN addgroup -g ${PGID} mattermost \
&& adduser -D -u ${PUID} -G mattermost -h /mattermost -D mattermost \
&& chown -R mattermost:mattermost /mattermost /config.json.save
USER mattermost
USER mattermost
#Healthcheck to make sure container is ready
HEALTHCHECK CMD curl --fail http://localhost:8000 || exit 1