From b4b891f204a7bf8fe1f1b9c036cfee6052a18bd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Mon, 24 Nov 2025 16:14:15 +0100 Subject: [PATCH] feat(Docker): Replace pnpm with bun for package management and build process --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a91e298a..f746309d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,8 +47,8 @@ RUN mkdir -p /var/log/nginx && mkdir -p /var/cache/nginx RUN composer install --no-dev --optimize-autoloader # Install Node.js dependencies and build assets -RUN pnpm i --frozen-lockfile -RUN pnpm run build || echo "Build step failed, continuing..." +RUN bun i --frozen-lockfile +RUN bun run build || echo "Build step failed, continuing..." # Copy supervisor configuration COPY docker/supervisor/supervisord.conf /etc/supervisor/conf.d/supervisord.conf