Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amaurybsouza/29ea3f7d111eb4dc90e0ca0e68a1b902 to your computer and use it in GitHub Desktop.
Save amaurybsouza/29ea3f7d111eb4dc90e0ca0e68a1b902 to your computer and use it in GitHub Desktop.
dockerfile-intro
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment