👷 Add Dockerfile

This commit is contained in:
Andreas Dinauer 2025-06-05 22:05:56 +02:00
parent 6432085a52
commit 51d0c294a9

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM node:22.9.0-alpine
WORKDIR /usr/app
COPY . .
ARG VERSION
RUN npm install
RUN npx nuxi cleanup
RUN npx nuxi build
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]