fix: add /app/bin to PATH

Ensure that Drush and other vendor binaries will work if the vendor bin
path is changed to `/app/bin` as it is with LocalGov Drupal.

Refs #24
This commit is contained in:
Oliver Davies 2023-03-03 21:52:04 +00:00
parent 38cfb31b2a
commit a5f5771317

View file

@ -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.* ./