Up
This commit is contained in:
parent
a2f2570ded
commit
1dea5aaeaf
1 changed files with 28 additions and 1 deletions
29
Dockerfile
29
Dockerfile
|
@ -1,4 +1,31 @@
|
|||
FROM mattermost/mattermost-prod-app
|
||||
FROM ubuntu:16.04
|
||||
MAINTAINER Glenn Y. Rolland <glenux@glenux.net>
|
||||
|
||||
# Some ENV variables
|
||||
ENV PATH="/mattermost/bin:${PATH}"
|
||||
ENV MM_VERSION=4.4.1
|
||||
|
||||
# Install some needed packages
|
||||
RUN apt-get update \
|
||||
&& apt-get -y --no-install-recommends install \
|
||||
curl jq netcat ca-certificates \
|
||||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin
|
||||
|
||||
# Get Mattermost
|
||||
RUN mkdir -p /mattermost/data \
|
||||
&& curl https://releases.mattermost.com/$MM_VERSION/mattermost-team-$MM_VERSION-linux-amd64.tar.gz | tar -xvz ; \
|
||||
&& cp /mattermost/config/config.json /config.json.save \
|
||||
&& rm -rf /mattermost/config/config.json
|
||||
|
||||
# Configure entrypoint and command
|
||||
COPY entrypoint.sh /
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
WORKDIR /mattermost/bin
|
||||
CMD ["platform"]
|
||||
|
||||
# Expose port 80 of the container
|
||||
EXPOSE 80
|
||||
|
||||
# Use a volume for the data directory
|
||||
VOLUME /mattermost/data
|
||||
|
||||
|
|
Loading…
Reference in a new issue