Files
bg-it-solutions.de/Dockerfile
2026-02-14 10:51:48 +01:00

18 lines
269 B
Docker

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"]