From 49c10d44b2badff7dba60c4b6ffa3383dbf55d0c Mon Sep 17 00:00:00 2001 From: Yi EungJun Date: Tue, 12 Apr 2016 14:06:44 +0900 Subject: [PATCH] app: Remove unnecessary things --- app/Dockerfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index 1367ac0..06e268a 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,16 +1,8 @@ FROM ubuntu:14.04 -RUN apt-get update && apt-get -y upgrade && apt-get -y install wget netcat +RUN apt-get update && apt-get -y install wget netcat RUN mkdir -p /mattermost/data -RUN touch /etc/init/mattermost.conf -RUN echo $'start on runlevel [2345]\n\ -stop on runlevel [016]\n\ -respawn\n\ -chdir /mattermost\n\ -exec bin/platform\n'\ ->> /etc/init/mattermost.conf - RUN wget https://releases.mattermost.com/2.1.0/mattermost-team-2.1.0-linux-amd64.tar.gz \ && tar -xvzf mattermost-team-2.1.0-linux-amd64.tar.gz && rm mattermost-team-2.1.0-linux-amd64.tar.gz