fix: trying to fix auto-pulls 9 !

This commit is contained in:
2026-02-27 05:37:21 +02:00
parent 02a353a80c
commit db2c67747d
2 changed files with 12 additions and 1 deletions

View File

@@ -5,6 +5,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& curl -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-27.5.1.tgz \
| tar -xz --strip-components=1 -C /usr/local/bin docker/docker \
&& curl -fsSL "https://github.com/docker/compose/releases/download/v2.32.4/docker-compose-linux-x86_64" \
-o /usr/local/bin/docker-compose \
&& chmod +x /usr/local/bin/docker-compose \
&& mkdir -p /usr/local/lib/docker/cli-plugins \
&& ln -s /usr/local/bin/docker-compose /usr/local/lib/docker/cli-plugins/docker-compose \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app