This commit is contained in:
2026-02-14 10:51:48 +01:00
commit 0688bca82d
21 changed files with 12426 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:22-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN apk add curl
RUN npm cache clear --force && npm ci
RUN npm run build
ENV NUXT_HOST=0.0.0.0
ENV NUXT_PORT=3000
EXPOSE 3000
ENTRYPOINT ["node", "/usr/src/app/.output/server/index.mjs"]