Skip to content

Instantly share code, notes, and snippets.

@vladkens
Last active January 16, 2022 14:59
Show Gist options
  • Select an option

  • Save vladkens/b149b161697dff1c869c9623e23e9fa7 to your computer and use it in GitHub Desktop.

Select an option

Save vladkens/b149b161697dff1c869c9623e23e9fa7 to your computer and use it in GitHub Desktop.
FROM node:16-alpine
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn app:build
EXPOSE 3000
CMD node dist/app.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment