From 9889c9d9661bf2b60300a9b9840112f3cee7fa9d Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 1 Feb 2025 09:59:34 +0200 Subject: [PATCH] pre-commit: Update Docker and Docker Compose. --- images/pre-commit/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/pre-commit/Dockerfile b/images/pre-commit/Dockerfile index cab0e7b..eb78c51 100644 --- a/images/pre-commit/Dockerfile +++ b/images/pre-commit/Dockerfile @@ -4,7 +4,8 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # hadolint ignore=DL3008,DL3013 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - docker.io \ + docker-ce-cli \ + docker-compose-plugin \ git \ python3-dev \ python3-pip \ @@ -14,7 +15,6 @@ RUN apt-get update && \ export PIP_CONSTRAINT=/tmp/constraint.txt && \ echo 'Cython < 3.0' > "$PIP_CONSTRAINT" && \ python3 -m pip install --no-cache-dir --break-system-packages \ - docker-compose \ pipenv \ poetry \ pre_commit \ -- GitLab