fix width if no voter

This commit is contained in:
2025-06-01 12:12:59 +02:00
parent 3a2b20a4c4
commit b126226e61
4 changed files with 27 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM node:lts-alpine AS build-stage
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN n
RUN npx nuxt build
FROM node:lts-alpine AS production-stage
WORKDIR /app
COPY --from=build-stage /app/.output/ /app
COPY --from=build-stage /app/node_modules/ /app/node_modules
EXPOSE 3000
CMD ["node", "server/index.mjs"]