From 9285659f71a1c36d00b51698b8904871ce884b54 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Fri, 1 Jul 2016 18:31:18 +0200 Subject: [PATCH] ghost: update to 0.9 beta --- ghost/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghost/Dockerfile b/ghost/Dockerfile index fc1d52a..a795fd7 100644 --- a/ghost/Dockerfile +++ b/ghost/Dockerfile @@ -1,7 +1,7 @@ FROM wonderfall/node MAINTAINER Wonderfall -ARG VERSION=0.8.0 +ARG VERSION=0.9.0-beta.2 ENV GHOST_NODE_VERSION_CHECK=false \ GID=991 \ @@ -34,8 +34,8 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a grep \ tini@commuedge \ su-exec \ - && wget -q https://ghost.org/zip/ghost-$VERSION.zip -P /tmp \ - && unzip -q /tmp/ghost-$VERSION.zip -d /ghost \ + && wget -q https://github.com/TryGhost/Ghost/releases/download/${VERSION}/Ghost-${VERSION}.zip -P /tmp \ + && unzip -q /tmp/Ghost-$VERSION.zip -d /ghost \ && cd /ghost \ && npm install --production \ && mv content/themes/casper casper \