chore: fix env
dev / deploy (push) Failing after 8s

This commit is contained in:
Daniil
2026-04-30 00:51:55 +03:00
parent 9aa2202d50
commit 0040748d35
3 changed files with 3 additions and 6 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ RUN bun run build
# --------------------------
# Stage 3: Start
# --------------------------
FROM node:22-alpine AS runner
FROM oven/bun:1.3.5-alpine AS runner
RUN addgroup --system --gid 1001 nodejs \
&& adduser --system --uid 1001 nextjs \
@@ -39,4 +39,4 @@ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
USER nextjs
EXPOSE 3000
CMD ["dumb-init", "node", "server.js"]
CMD ["dumb-init", "bun", "server.js"]