aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..80ecadf
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,16 @@
1FROM cloudron/base:0.3.0
2MAINTAINER Johannes Zellner <johannes@nebulon.de>
3
4ENV DEBIAN_FRONTEND noninteractive
5
6RUN mkdir -p /app/code
7WORKDIR /app/code
8
9ADD package.json /app/code/package.json
10ADD src /app/code/src
11ADD app.js /app/code/app.js
12RUN npm install
13
14EXPOSE 3000
15
16CMD [ "nodejs", "app.js"]