From ce201165b6cd3bf5b40ddd6631641ca742e07553 Mon Sep 17 00:00:00 2001 From: Craig Mulligan Date: Tue, 3 Mar 2015 12:57:55 +0000 Subject: [PATCH] Resinify Add Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..6a776264 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM resin/rpi-node:0.10.22 + +COPY . /app + +RUN cd /app/coder-base && \ + npm install +RUN cd /app/coder-apps && \ + ./install_common.sh ../coder-base + +WORKDIR /app/coder-base +CMD ["node", "server.js"]