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.

10 lines
95B

  1. FROM node:22-alpine
  2. WORKDIR /app
  3. COPY server.mjs ./
  4. EXPOSE 3000
  5. CMD ["node", "server.mjs"]