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.
|
- FROM node:22-bullseye-slim
-
- WORKDIR /app
-
- ENV NODE_ENV=production
-
- RUN apt-get update \
- && apt-get install -y --no-install-recommends \
- build-essential \
- ca-certificates \
- python3 \
- python3-pip \
- python-is-python3 \
- && rm -rf /var/lib/apt/lists/*
-
- COPY package*.json ./
- RUN npm ci --omit=dev
-
- COPY . .
-
- EXPOSE 4443
-
- CMD ["npm", "start"]
|