diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a69900c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM 20.16.0-alpine3.20 AS runtime +WORKDIR /app + +COPY . . + +RUN pnpm install +RUN pnpm run build + +ENV HOST=0.0.0.0 +ENV PORT=4321 +EXPOSE 4321 +CMD node ./dist/server/entry.mjs \ No newline at end of file