From db50b158d2b9ccb3ebdc9488bc6dc0304ea1d69a Mon Sep 17 00:00:00 2001
From: Dima <datamanchuk@securitycompass.com>
Date: Thu, 19 Oct 2023 13:35:35 -0400
Subject: [PATCH] softlinked python3 as python

---
 Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 6ba0afd..e2e5946 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,8 @@ RUN set -x \
     && mkdir --parents /sde \
     && tar --extract --gzip --file=/sde-trend-reporting-${trend_reporting_version}.tgz --directory=/sde \
     && rm sde-trend-reporting-${trend_reporting_version}.tgz \
-    && python3 -m pip install --no-index --find-links /sde/wheelhouse/* 
+    && python3 -m pip install --no-index --find-links /sde/wheelhouse/* \
+    && ln -s /usr/bin/python3 /usr/bin/python
     
 #Use dbt:root as user:group instead of root
 RUN adduser --system dbt
-- 
GitLab