This repository has been archived on 2021-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
mattermost/app/Dockerfile

15 lines
328 B
Docker
Raw Normal View History

FROM ubuntu:14.04
2016-05-17 06:50:56 +02:00
RUN apt-get update && apt-get -y install curl netcat
RUN mkdir -p /mattermost/data
2016-05-18 03:08:22 +02:00
RUN curl https://releases.mattermost.com/3.0.2/mattermost-team-3.0.2-linux-amd64.tar.gz | tar -xvz
COPY config.template.json /
COPY docker-entry.sh /
RUN chmod +x /docker-entry.sh
ENTRYPOINT ["/docker-entry.sh"]
EXPOSE 80