From 79e461a19eff74971b4cc115d8176839c70062ad Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Thu, 30 Nov 2023 14:27:55 -0500 Subject: [PATCH] Use 3.10 --- .drone.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 054c896..5ce1e34 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: CI Test Pipeline steps: - name: Unit Tests - image: python:3.11-bookworm + image: python:3.10-bookworm commands: - bash -c './scripts/run_unit_tests.sh' diff --git a/Dockerfile b/Dockerfile index ad21914..1778158 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1.4 # Best practice: Choose a stable base image and tag. -FROM python:3.11-slim-bookworm +FROM python:3.10-slim-bookworm # Install security updates, and some useful packages. #