Skip to content

Commit

Permalink
fix: getting mattermost release in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémi Heens committed Sep 20, 2023
1 parent 18f7c89 commit 4c6dd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apk add --no-cache \

# Get Mattermost
RUN mkdir -p /mattermost/data /mattermost/plugins /mattermost/client/plugins \
&& curl -L https://github.com/remiheens/mattermost-docker-arm/releases/download/$MM_VERSION/mattermost-$MM_VERSION-${TARGETOS}-${TARGETARCH}.tar.gz | tar -xvz \
&& curl -L https://github.com/remiheens/mattermost-docker-arm/releases/download/$MM_VERSION/mattermost-$MM_VERSION-${TARGETOS}-${TARGETARCH}.tar.gz | tar -C /mattermost --strip-components=1 -xvz \
&& cp /mattermost/config/config.json /mattermost/config.json.save \
&& rm -rf /mattermost/config/config.json \
&& addgroup -g ${PGID} mattermost \
Expand Down

0 comments on commit 4c6dd83

Please sign in to comment.