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