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.

11 lines
120 B

10 months ago
3 years ago
10 months ago
3 years ago
10 months ago
3 years ago
10 months ago
3 years ago
  1. FROM node:latest
  2. WORKDIR /app
  3. COPY package.json package-lock.json ./
  4. RUN npm install
  5. COPY . .
  6. CMD ["npm", "start"]