From be66ae1d432f2c05d1cda9691b0e6a8bd4da594c Mon Sep 17 00:00:00 2001 From: Andra Blaj Date: Thu, 10 Oct 2024 13:37:15 +0000 Subject: [PATCH] revert python --- tests/dbt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/dbt/Dockerfile b/tests/dbt/Dockerfile index 95fd61b3..17c3f6cb 100644 --- a/tests/dbt/Dockerfile +++ b/tests/dbt/Dockerfile @@ -1,9 +1,9 @@ -FROM python:3.12 AS testing +FROM python:3 AS testing RUN pip install flake8 \ && flake8 dbt-run.py -FROM python:3.12 AS release +FROM python:3 AS release RUN pip install --upgrade cffi \ && pip install cryptography~=3.4 \