From 5bda0e53736697fac60b940296447e82e65fc902 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Fri, 1 May 2026 03:59:34 -0700 Subject: [PATCH] Add PATH env --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 75106f0..7bd6048 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,8 @@ RUN docker-php-ext-configure gd --with-freetype --with-jpeg && \ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer +ENV PATH="/var/www/html/vendor/bin:${PATH}" + WORKDIR /var/www/html # Copy composer manifest first for layer caching; install pulls Drupal from Packagist.