diff --git a/Dockerfile b/Dockerfile index cb36ec8..e84b810 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,20 +33,3 @@ EXPOSE 3000 # Default command CMD ["bun", "run", "dev"] - -# ============================================ -# Production stage - full app with source code -# ============================================ -FROM base AS production - -# Copy dependencies from deps stage -COPY --from=deps /app/node_modules ./node_modules - -# Copy source code -COPY . . - -# Expose ports -EXPOSE 3000 - -# Default command -CMD ["bun", "run", "dev"]