Skip to content

Instantly share code, notes, and snippets.

@goindwalia
Created February 22, 2017 07:07
Show Gist options
  • Save goindwalia/74df29f4dffb4d9ae2a74fbaf14a2abf to your computer and use it in GitHub Desktop.
Save goindwalia/74df29f4dffb4d9ae2a74fbaf14a2abf to your computer and use it in GitHub Desktop.
FROM node:4-slim
MAINTAINER XenonStack
COPY bundle/ /app/
RUN cd /app/programs/server \&& npm install
ENV PORT=3000 \
ROOT_URL=http://localhost:3000
EXPOSE 3000
CMD ["node", "/app/main.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment