You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
190 B

  1. FROM node:lts
  2. WORKDIR /usr/src/app
  3. COPY package*.json ./
  4. RUN npm ci
  5. # If you are building your code for production
  6. # # RUN npm ci --only=production
  7. COPY . .
  8. CMD [ "node", "main.js" ]