From 2bb65e895b2ad12e5fdcc449748bf2fc929db2f9 Mon Sep 17 00:00:00 2001 From: Seamus Johnston Date: Mon, 31 Oct 2022 08:47:36 -0500 Subject: [PATCH] Pin Python image to 3.10 --- src/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index 83f72450b..e4cc5230e 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,4 +1,6 @@ -FROM python:3 +FROM python:3.10 + +# Python 3.11 introduces a bug in oic package, fyi - Oct 31, 2022 RUN apt-get update && apt-get install -y postgresql-client