Skip to content

Instantly share code, notes, and snippets.

@kuy
Created April 19, 2017 17:16
Show Gist options
  • Save kuy/b10ee6aa9750bb77406c3359e5a0aa8a to your computer and use it in GitHub Desktop.
Save kuy/b10ee6aa9750bb77406c3359e5a0aa8a to your computer and use it in GitHub Desktop.
FROM mhart/alpine-node:7.9.0
RUN apk update && apk add git
RUN mkdir /app
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
CMD ["npm", "run", "build"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment