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
204B

  1. FROM node:21.2.0
  2. # Create app directory
  3. WORKDIR /usr/src/photos-server.novox.be
  4. # Copy build output
  5. COPY ./dist ./
  6. COPY ./node_modules ./node_modules
  7. CMD ["node", "server.cjs", "--enable-source-maps"]