feat(Docker): Replace pnpm with bun for package management and build process

This commit is contained in:
Víctor Falcón 2025-11-24 16:14:15 +01:00
parent d2f992493d
commit b4b891f204
1 changed files with 2 additions and 2 deletions

View File

@ -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