2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-31 18:17:25 +01:00
Files
dockerfiles_vimagick/ghost/Dockerfile
2014-12-06 17:54:16 +08:00

19 lines
425 B
Docker

FROM ubuntu:14.04
MAINTAINER kev
WORKDIR /tmp
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
WORKDIR /ghost
RUN sed 's/127.0.0.1/0.0.0.0/' config.example.js > config.js
RUN npm install --production
VOLUMN /ghost/content/data/
EXPOSE 2368
CMD NODE_ENV=production npm start