From 254359239a02c1a933c1ff4ba19faa088725f8df Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 3 Mar 2023 23:04:06 +0000 Subject: [PATCH] fix: add `/app/bin` to PATH to fix Drush Fixes #11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40dab43..395f3d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN adduser --disabled-password --uid "${DOCKER_UID}" app \ USER app -ENV PATH="${PATH}:/app/vendor/bin" +ENV PATH="${PATH}:/app/bin:/app/vendor/bin" COPY --chown=app:app composer.* ./