# Install Ghost blogging platform and run development environment
MAINTAINER Amer Grgic "amer@livebyt.es"
# Install dependencies for nginx installation
RUN apt-get install -y python g++ make software-properties-common --force-yes
RUN add-apt-repository ppa:chris-lea/node.js
RUN apt-get install -y unzip
RUN apt-get install -y curl
RUN apt-get install -y rlwrap
RUN apt-get install -y nodejs
RUN curl -L https://ghost.org/zip/ghost-latest.zip -o /tmp/ghost.zip
# Unzip Ghost zip to /data/ghost
RUN unzip -uo /tmp/ghost.zip -d /data/ghost
# Add custom config js to /data/ghost
ADD ./config.example.js /data/ghost/config.js
RUN cd /data/ghost/ && npm install --production