From 51d0c294a9b5e2660c1add1ddbe868c496647aac Mon Sep 17 00:00:00 2001 From: Andreas Dinauer Date: Thu, 5 Jun 2025 22:05:56 +0200 Subject: [PATCH] :construction_worker: Add Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile 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