Skip to content

Instantly share code, notes, and snippets.

@yicaoyimu
Created August 15, 2021 21:55
Show Gist options
  • Save yicaoyimu/c85efa69b896cdcd0cc3b6329085f3e8 to your computer and use it in GitHub Desktop.
Save yicaoyimu/c85efa69b896cdcd0cc3b6329085f3e8 to your computer and use it in GitHub Desktop.
Docker file for Dam998/shopify-monitor
# syntax=docker/dockerfile:1
FROM node:16.2.0
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
COPY . .
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment