1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-05 09:31:24 +00:00
dockerfiles/ghost/arm/Dockerfile
2016-04-18 16:48:57 +08:00

36 lines
785 B
Docker

#
# Dockerfile for ghost-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
ENV GHOST_VER 0.7.9
ENV GHOST_URL https://ghost.org/archives/ghost-$GHOST_VER.zip
ENV GHOST_SOURCE /usr/src/ghost
ENV GHOST_CONTENT /var/lib/ghost
WORKDIR $GHOST_SOURCE
VOLUME $GHOST_CONTENT
RUN set -ex \
&& apk add -U bash \
nodejs \
&& apk add -t TMP build-base \
curl \
python \
&& curl -sSL $GHOST_URL -o ghost.zip \
&& unzip ghost.zip \
&& npm install --production \
&& npm cache clean \
&& apk del TMP \
&& rm -rf ghost.zip \
/tmp/npm* \
/var/cache/apk/*
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 2368
CMD ["npm", "start"]