Skip to content

Instantly share code, notes, and snippets.

@VisualBean
Created January 3, 2019 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VisualBean/6eb3550d08045cb8bb182127c2b011e2 to your computer and use it in GitHub Desktop.
Save VisualBean/6eb3550d08045cb8bb182127c2b011e2 to your computer and use it in GitHub Desktop.
pre alpine update
FROM node:8.15-jessie
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 80
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment