From b3ee5d84c0a2bc12ac8180e365f9afca326523e4 Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Sat, 29 Jan 2022 06:53:36 +0100 Subject: [PATCH] Reverted the switch to a Go version of supervisord; it doesn't support multi-arch builds and the image is outdated --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98d24f4..e189269 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,8 @@ RUN apk add --no-cache \ php8-session \ php8-xml \ php8-xmlreader \ - php8-zlib + php8-zlib \ + supervisor # Create symlink so programs depending on `php` still function RUN ln -s /usr/bin/php8 /usr/bin/php @@ -37,8 +38,7 @@ COPY config/nginx.conf /etc/nginx/nginx.conf COPY config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf COPY config/php.ini /etc/php8/conf.d/custom.ini -# Install a golang port of supervisord and Configure -COPY --from=ochinchina/supervisord:latest /usr/local/bin/supervisord /usr/bin/supervisord +# Configure supervisord COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf # Make sure files/folders needed by the processes are accessable when they run under the nobody user