From 641cba876815d88b9f635e1dec0ee1e3fff4b11d Mon Sep 17 00:00:00 2001 From: bahill Date: Wed, 20 Nov 2024 14:53:20 -0500 Subject: [PATCH] poetry was getting confused over python vs python3 during pkg installs - this resolved the issue. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ed4bf710..3e61efee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ ENV LANG='en_US.UTF-8' \ SBT_VERSION=1.7.1 # Install some helpful tools not included in the base image, as well as set up for JDK install +# python-is-python3 makes python3 the default, to avoid issues with poetry RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive \ && apt-get install -yqq --no-install-recommends \ @@ -20,6 +21,7 @@ RUN apt-get update \ git \ gnupg \ locales \ + python-is-python3 \ sudo \ tzdata \ unzip \