Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created July 22, 2020 10:04
Show Gist options
  • Save indreklasn/698ee718f51320f22a6ae96038b632f7 to your computer and use it in GitHub Desktop.
Save indreklasn/698ee718f51320f22a6ae96038b632f7 to your computer and use it in GitHub Desktop.
FROM node:alpine
WORKDIR /app
COPY package.json /app
RUN yarn install && yarn cache clean
COPY . /app
CMD ["yarn", "run", "build"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment