mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +02:00
21 lines
450 B
Docker
21 lines
450 B
Docker
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
|
|
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
|
|
RUN npm install --production
|
|
|
|
VOLUMN /ghost/content/data/
|
|
EXPOSE 2368
|
|
|
|
CMD NODE_ENV=production npm start
|