From fcc6269877be6062c896008ad5b4fd96e8fc3525 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Mon, 19 Dec 2022 11:21:41 -0500 Subject: [PATCH] Use the latest (supported) version of Python This is Python 3.7, since pshtt does not support >3.7. Also bump the base Docker image from Buster to Bullseye, and specify the full Python version of Docker image to use. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a6d8ee..3c6daa6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6-slim-buster +FROM python:3.7.16-slim-bullseye ### # For a list of pre-defined annotation keys and value types see: