diff --git a/Dockerfile b/Dockerfile index e739a9a..45b4948 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY . . RUN bun run build # Stage 3: Production image -FROM oven/bun:1-alpine AS runner +FROM node:23-alpine AS runner WORKDIR /app ENV NODE_ENV=production COPY --from=builder /app/public ./public @@ -22,4 +22,4 @@ COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static EXPOSE 3000 -CMD ["bun", "run", "server.js"] +CMD ["node", "run", "server.js"]