summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-06-17 08:39:33 -0400
committerChristopher Speller <crspeller@gmail.com>2015-06-17 08:39:33 -0400
commitdec6c765f53744a6f9b265eaf3ecb56d9cef1331 (patch)
tree570c3083d3cf3bf74fc148089f319649c4617755 /Dockerfile
parente7772f5dff2f4ca24d484a10e7e6649c79098af9 (diff)
downloadchat-dec6c765f53744a6f9b265eaf3ecb56d9cef1331.tar.gz
chat-dec6c765f53744a6f9b265eaf3ecb56d9cef1331.tar.bz2
chat-dec6c765f53744a6f9b265eaf3ecb56d9cef1331.zip
Resurrecting config_docker.json. Moving docker related files to docker directory. Added copyright info.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index da57550c0..5c389c056 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,5 @@
+# Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+# See License.txt for license information.
FROM ubuntu:14.04
# Install Dependancies
@@ -83,15 +85,15 @@ RUN wget http://download.redis.io/redis-stable.tar.gz; \
ADD . /go/src/github.com/mattermost/platform
# Insert postfix config
-ADD ./config/main.cf /etc/postfix/
+ADD ./docker/main.cf /etc/postfix/
RUN go get github.com/tools/godep
RUN cd /go/src/github.com/mattermost/platform; godep restore
RUN go install github.com/mattermost/platform
RUN cd /go/src/github.com/mattermost/platform/web/react; npm install
-RUN chmod +x /go/src/github.com/mattermost/platform/docker-entry.sh
-ENTRYPOINT /go/src/github.com/mattermost/platform/docker-entry.sh
+RUN chmod +x /go/src/github.com/mattermost/platform/docker/docker-entry.sh
+ENTRYPOINT /go/src/github.com/mattermost/platform/docker/docker-entry.sh
# Ports
EXPOSE 80