ci update
All checks were successful
Build & Push Docker (latest) / verify (push) Successful in 9m31s
Build & Push Docker (latest) / build (push) Successful in 16s

This commit is contained in:
Aiden Wilson
2026-05-29 23:58:42 +10:00
parent 959f6590c3
commit 3e6b128643
4 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
FROM node:22-alpine
ENV NODE_ENV=production
WORKDIR /app
COPY package*.json ./
@@ -12,5 +11,6 @@ COPY scripts ./scripts
COPY tsconfig.json ./
RUN npm run build && npm prune --omit=dev
ENV NODE_ENV=production
EXPOSE 3000
CMD ["npm", "start"]