From 245803937a27975a4564dd4c95525a75c8084b18 Mon Sep 17 00:00:00 2001 From: Nadav Tasher Date: Fri, 19 Jan 2024 15:58:20 +0200 Subject: [PATCH] Added python 3.7 image base --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0311152..3d6a98e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,9 @@ jobs: - name: Build and push - Python 2.7 run: BASE_IMAGE=python:2.7-slim-buster IMAGE_TAG=2.7 make buildx + - name: Build and push - Python 3.7 + run: BASE_IMAGE=python:3.7-slim-bullseye IMAGE_TAG=3.7 make buildx + - name: Build and push - Python 3.8 run: BASE_IMAGE=python:3.8-slim-bullseye IMAGE_TAG=3.8 make buildx