mirror of
https://github.com/opdavies/build-configs.git
synced 2025-03-13 05:26:56 +00:00
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:
parent
38cfb31b2a
commit
a5f5771317
|
@ -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.* ./
|
||||
|
||||
|
|
Loading…
Reference in a new issue