Skip to content

Instantly share code, notes, and snippets.

@PavelPolyakov
Last active January 21, 2019 09:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save PavelPolyakov/7931184666a58b11ea50d008b6feb289 to your computer and use it in GitHub Desktop.
FROM node:dubnium-alpine
WORKDIR /app
COPY . .
RUN npm install --no-progress --quiet
RUN npm run build
CMD [ "npm", "start", "--silent" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment