From 840f2194f5b1fb9a1602297fb5d447ce21d9299c Mon Sep 17 00:00:00 2001 From: PeterChrz Date: Tue, 31 Mar 2026 00:13:20 -0400 Subject: [PATCH] Fix composer auth.json mount path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a02b149..48c7a08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ FROM composer:2 AS composer-builder WORKDIR /app COPY composer.json composer.lock ./ # Mount auth.json as a secret so it never gets baked into the image -RUN --mount=type=secret,id=composer_auth,dst=/root/.composer/auth.json \ +RUN --mount=type=secret,id=composer_auth,dst=/composer/auth.json \ composer install \ --no-dev \ --no-interaction \