From 7b184c1ee49826ed0bd30743eca6887e37dc8808 Mon Sep 17 00:00:00 2001 From: stacksmith-bot Date: Tue, 9 Aug 2016 15:53:10 -0700 Subject: [PATCH] stacksmith: Add Dockerfile --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 146e89c6a..ab00d4e3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,22 +11,21 @@ ## Connect to the container at DOCKER_IP:3000 ## replacing DOCKER_IP for the IP of your active docker host -FROM gcr.io/stacksmith-images/debian-buildpack:wheezy-r07 +FROM gcr.io/stacksmith-images/debian-buildpack:wheezy-r8 MAINTAINER Bitnami -ENV STACKSMITH_STACK_ID="c63a4ug" \ +ENV STACKSMITH_STACK_ID="pg7qumt" \ STACKSMITH_STACK_NAME="jmarbach/node-todo" \ STACKSMITH_STACK_PRIVATE="1" -RUN bitnami-pkg install node-6.2.1-0 --checksum f38ccc063ccc74ab095ddcb5bd227c0722e348f53e31652fd2840779be9e581f +RUN bitnami-pkg install node-6.3.1-0 --checksum afc84696d6aeaf8a3d058ecda07f72bfa54392207fa939e6b11ef8eba986aff9 ENV PATH=/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH \ NODE_PATH=/opt/bitnami/node/lib/node_modules ## STACKSMITH-END: Modifications below this line will be unchanged when regenerating - # ExpressJS template COPY . /app WORKDIR /app @@ -34,4 +33,4 @@ WORKDIR /app RUN npm install EXPOSE 3000 -CMD ["node", "server.js"] +CMD ["npm", "start"]