From 00cd638e231450e281320876d5b8fbc54ab00c88 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 29 Dec 2022 12:36:19 +0100 Subject: [PATCH] Revert "Use 3.11-slim as base image (#259)" This reverts commit 93ab8e878b6ea5a4d5e27ef09d2a510cd2fce80b. The OpenStack SDK is not yet happy with Python 3.11: AttributeError: module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'? More details: https://github.com/pyinvoke/invoke/issues/833 Closes osism/issues#392 Signed-off-by: Christian Berendt --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 0ec671d..b22e6e1 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,7 @@ ARG RELEASE_RECEPTOR=1.0.0 FROM quay.io/project-receptor/receptor:${RELEASE_RECEPTOR} as receptor -FROM python:3.11.0-slim +FROM python:3.10-slim ARG VERSION=latest ARG IS_RELEASE=false