chore: add dokploy standalone runtime deployment

This commit is contained in:
2026-04-19 17:52:43 +08:00
parent ffc95fd843
commit 30d118027c
4 changed files with 23 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:22-bookworm
ENV NODE_ENV="production"
ENV HOSTNAME="0.0.0.0"
ENV PORT="3000"
WORKDIR /app
COPY .next/standalone ./
COPY .next/static ./.next/static
EXPOSE 3000
CMD ["node", "server.js"]