Clean up drift: restore Dockerfile name, remove cache bust artifacts
All checks were successful
CI — P2 Drift (Go + Node) / agent (push) Successful in 14s
CI — P2 Drift (Go + Node) / saas (push) Successful in 28s

This commit is contained in:
2026-03-02 04:45:12 +00:00
parent e0b84f5481
commit d175c3a6e7
2 changed files with 1 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
FROM node:22-slim AS builder
WORKDIR /app
ARG CACHE_BUST=1
COPY package.json package-lock.json* ./
RUN npm ci --include=dev
COPY . .
RUN npm run build
FROM node:22-slim
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./
EXPOSE 3000
CMD ["node", "dist/index.js"]