From dfe76684f431f70df67935c86705dc985693c360 Mon Sep 17 00:00:00 2001 From: Veovis Date: Mon, 1 Jan 2018 17:58:08 +0100 Subject: [PATCH] Change the working dir for plugins to work (#218) Fix https://github.com/mattermost/mattermost-docker/issues/217 with the default configuration on the PluginSettings as they use relative paths. --- app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Dockerfile b/app/Dockerfile index c6312d7..3c26c88 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -26,7 +26,7 @@ RUN mkdir -p /mattermost/data \ # Configure entrypoint and command COPY entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"] -WORKDIR /mattermost/bin +WORKDIR /mattermost CMD ["platform"] # Expose port 80 of the container