fix build
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 50s

This commit is contained in:
2026-03-26 18:20:25 -04:00
parent 72f652eabe
commit d1ad6e0f09
3 changed files with 15 additions and 12 deletions

View File

@@ -1,10 +1,13 @@
FROM node:lts AS runtime
FROM node:24-alpine AS runtime
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm install
RUN npm run build
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]