From 255eba38ef395c3a240b7728eeabf844929a5be4 Mon Sep 17 00:00:00 2001 From: glaszig Date: Sat, 3 Aug 2024 00:35:08 -0300 Subject: [PATCH] fix python installation capistrano's git-archive-all needs a binary named `python`. --- Dockerfile.template | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.template b/Dockerfile.template index 36419d3..430fc14 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -33,6 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libyaml-dev \ zlib1g-dev && \ apt-get clean && \ + update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \ rm -rf /var/cache/apt/* && \ rm -rf /usr/lib/ruby/gems/*/cache/* && \ rm -rf /usr/local/bundle/cache/* && \