From 8f94b3f88e78cf4148f6b74a3f5e51cccf2d8e0b Mon Sep 17 00:00:00 2001 From: Peter Smit Date: Thu, 16 Jan 2025 17:08:30 +0100 Subject: [PATCH] Actually actually fix docker compose in updater --- updater/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updater/Dockerfile b/updater/Dockerfile index 2a16d8b..f17f148 100644 --- a/updater/Dockerfile +++ b/updater/Dockerfile @@ -16,8 +16,8 @@ RUN echo \ # Install git and docker-compose RUN apt-get update && \ - apt-get install -y git docker-compose-plugin && \ - rm -rf /var/lib/apt/lists/* + apt-get install -y git docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin && \ + rm -rf /var/lib/apt/lists/* \ # Copy the PHP file to the Apache document root COPY webhook.php /var/www/html/index.php