1234567891011121314151617181920212223 |
- FROM cloudron/base:0.7.0
- MAINTAINER Johannes Zellner <johannes@cloudron.io>
- ENV DEBIAN_FRONTEND noninteractive
- RUN apt-get install -y imagemagick
- ENV PATH /usr/local/node-0.12.7/bin:$PATH
- EXPOSE 4567
- RUN mkdir -p /app/code
- WORKDIR /app/code
- RUN git clone -b v0.8.x https://github.com/NodeBB/NodeBB.git .
- RUN npm install
- # these links will become valid after setup is run
- RUN rm -rf /app/code/config.json && ln -sf /app/data/config.json /app/code/config.json
- ADD start.sh /app/code/start.sh
- CMD [ "/app/code/start.sh" ]
|