From e0e2126f387ef24eb7400f73c71285a36a0f8188 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 16 Dec 2024 12:08:30 +0100 Subject: [PATCH] fix: update Dockerfile entrypoint path to /etc/entrypoint.d --- docker/production/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 419cac393..aaef29f9d 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -100,7 +100,7 @@ COPY docker/production/etc/php/conf.d/zzz-custom-php.ini /usr/local/etc/php/conf ENV PHP_OPCACHE_ENABLE=1 # Configure entrypoint -COPY --chmod=755 docker/production/entrypoint.d/ /usr/local/bin/entrypoint.d/ +COPY --chmod=755 docker/production/entrypoint.d/ /etc/entrypoint.d # Copy application files from previous stages COPY --from=base --chown=www-data:www-data /var/www/html/vendor ./vendor