This commit is contained in:
2026-08-07 17:19:57 +00:00
parent 08816695c9
commit 4375781521
9 changed files with 67 additions and 84 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:22-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY --from=build /app/dist ./dist
COPY start.js ./
EXPOSE 8005
ENV NODE_ENV=production
CMD ["node", "start.js"]