]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blame - Dockerfile
Adjust the repo which is now on gitlab
[perso/Immae/Projets/Nodejs/Surfer.git] / Dockerfile
CommitLineData
c2e44406 1FROM cloudron/base:0.10.0
c88ec639
JZ
2MAINTAINER Johannes Zellner <johannes@nebulon.de>
3
c2e44406 4ENV PATH /usr/local/node-6.9.5/bin:$PATH
5331fd69 5
c88ec639
JZ
6RUN mkdir -p /app/code
7WORKDIR /app/code
8
c88ec639 9ADD src /app/code/src
95e5eb9f 10ADD frontend /app/code/frontend
c2e44406 11ADD package.json server.js start.sh /app/code/
e1d60ef0 12
71b93fc7 13RUN npm install --production
c88ec639 14
b72caa69 15CMD [ "/app/code/start.sh" ]