Small text-based online game — a HAL mesh module
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.

13 lines
157B

  1. FROM node:22-alpine
  2. WORKDIR /app
  3. COPY package.json package-lock.json ./
  4. RUN npm ci --omit=dev
  5. COPY server.mjs ./
  6. EXPOSE 3000
  7. CMD ["node", "server.mjs"]