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

11
nuxt/static/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:24 AS build
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY . .
RUN npm run generate
FROM nginx
COPY --from=build /app/.output/public /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]