diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3cad0f4 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file