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.
 
 
 
 

24 lines
361 B

  1. FROM node:22-bullseye-slim
  2. WORKDIR /app
  3. ENV NODE_ENV=production
  4. RUN apt-get update \
  5. && apt-get install -y --no-install-recommends \
  6. build-essential \
  7. ca-certificates \
  8. python3 \
  9. python3-pip \
  10. python-is-python3 \
  11. && rm -rf /var/lib/apt/lists/*
  12. COPY package*.json ./
  13. RUN npm ci --omit=dev
  14. COPY . .
  15. EXPOSE 4443
  16. CMD ["npm", "start"]