Skip to content

Instantly share code, notes, and snippets.

@yuki-yano
Created August 14, 2016 23:25
Show Gist options
  • Select an option

  • Save yuki-yano/2647f7f35a4738246b940a90e5eaaceb to your computer and use it in GitHub Desktop.

Select an option

Save yuki-yano/2647f7f35a4738246b940a90e5eaaceb to your computer and use it in GitHub Desktop.
# Dockerfile.node_development
FROM node:6.3
ARG APP_HOME
RUN mkdir -p $APP_HOME
WORKDIR $APP_HOME
ADD package.json $APP_HOME/
RUN npm cache clean && npm i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment