From f30964626d13268cf9f7f5c15c7e23522b8d3c14 Mon Sep 17 00:00:00 2001 From: kev Date: Sat, 6 Dec 2014 17:54:16 +0800 Subject: [PATCH] update --- ghost/Dockerfile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ghost/Dockerfile b/ghost/Dockerfile index f5dfa50..b73e855 100644 --- a/ghost/Dockerfile +++ b/ghost/Dockerfile @@ -1,14 +1,12 @@ FROM ubuntu:14.04 MAINTAINER kev -ADD https://deb.nodesource.com/setup / -RUN bash setup -RUN apt-get install -y build-essential nodejs wget unzip - WORKDIR /tmp -RUN wget https://ghost.org/zip/ghost-latest.zip +ADD https://deb.nodesource.com/setup /tmp/ +ADD https://ghost.org/zip/ghost-latest.zip /tmp/ +RUN bash setup +RUN apt-get install -y build-essential nodejs unzip RUN unzip ghost-latest.zip -d /ghost -RUN rm ghost-latest.zip WORKDIR /ghost RUN sed 's/127.0.0.1/0.0.0.0/' config.example.js > config.js