This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
264 B
Docker

FROM node:21-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:21-alpine
USER node:node
WORKDIR /app
COPY package.json .
COPY --from=builder /app/build ./build
CMD ["node", "./build/index.js"]