Skip to content

Instantly share code, notes, and snippets.

@VisualBean
Created November 23, 2020 08:41
Show Gist options
  • Save VisualBean/c7725852e601e3140dcffce1fbdae9b2 to your computer and use it in GitHub Desktop.
Save VisualBean/c7725852e601e3140dcffce1fbdae9b2 to your computer and use it in GitHub Desktop.
basic unoptimized docker file
FROM node:12-alpine
WORKDIR /app
COPY . .
RUN yarn install
CMD ["node", "/app/src/index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment