From bf1ab725b03952f228ebcf4a5acf51d038630e6f Mon Sep 17 00:00:00 2001 From: mukesh13 Date: Tue, 17 Jun 2025 16:05:27 +0530 Subject: [PATCH] Docker update --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92b5810..e873d6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,11 +14,8 @@ COPY . . # Disable telemetry ENV NEXT_TELEMETRY_DISABLED=1 -# Build the app -RUN pnpm build - # Expose port EXPOSE 3000 -# Start the application -CMD ["pnpm", "start"] \ No newline at end of file +# Skip build step - run in dev mode (much faster) +CMD ["pnpm", "dev"] \ No newline at end of file