diff --git a/ghost/Dockerfile b/ghost/Dockerfile index f918953..8f45fb7 100644 --- a/ghost/Dockerfile +++ b/ghost/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.6 -ARG GHOST_VERSION=0.11.9 +ARG GHOST_VERSION=0.11.10 ENV GHOST_NODE_VERSION_CHECK=false \ GID=991 \ @@ -33,8 +33,8 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a grep \ tini@commuedge \ su-exec \ - nodejs \ - nodejs-npm \ + nodejs-current \ + nodejs-current-npm \ && wget -q https://github.com/TryGhost/Ghost/releases/download/${GHOST_VERSION}/Ghost-${GHOST_VERSION}.zip -P /tmp \ && unzip -q /tmp/Ghost-${GHOST_VERSION}.zip -d /ghost \ && cd /ghost \