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