Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created July 15, 2020 08:53
Show Gist options
  • Save indreklasn/832561dda95b450d83f6b1f825c8eb2a to your computer and use it in GitHub Desktop.
Save indreklasn/832561dda95b450d83f6b1f825c8eb2a to your computer and use it in GitHub Desktop.
FROM node:alpine
WORKDIR /app
COPY package.json /app
RUN yarn install
COPY . /app
CMD ["yarn", "run", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment