Nuclear cache bust: rename drift Dockerfile to Dockerfile.v2
All checks were successful
CI — P2 Drift (Go + Node) / saas (push) Successful in 25s
CI — P2 Drift (Go + Node) / agent (push) Successful in 42s

This commit is contained in:
2026-03-02 00:14:43 +00:00
parent 00aaf1a941
commit 364e411e69
2 changed files with 1 additions and 1 deletions

View File

@@ -1,15 +0,0 @@
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"]