chore: update nuxt examples

This commit is contained in:
Cinzya
2025-12-28 19:11:25 +01:00
parent be12308526
commit 55fe4b24cf
25 changed files with 12333 additions and 11274 deletions

14
nuxt/server/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:24 AS build
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:24
WORKDIR /app
COPY --from=build /app/.output/ ./
ENV PORT=3000
ENV HOST=0.0.0.0
EXPOSE 3000
CMD ["node", "/app/server/index.mjs"]