From 3e8c4ce4408f85561d426356462a9cae25d6f9a5 Mon Sep 17 00:00:00 2001 From: Charles Lanahan Date: Fri, 5 Apr 2024 10:46:14 -0400 Subject: [PATCH] Updated docker images to use python 3.12 --- images/keripy.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/keripy.dockerfile b/images/keripy.dockerfile index ca12837fc..f04bb811d 100644 --- a/images/keripy.dockerfile +++ b/images/keripy.dockerfile @@ -1,5 +1,5 @@ # Builder layer -FROM python:3.10-alpine as builder +FROM python:3.12-alpine as builder # Install compilation dependencies RUN apk --no-cache add \ @@ -32,7 +32,7 @@ RUN . ${HOME}/.cargo/env && \ pip install -r requirements.txt # Runtime layer -FROM python:3.10.13-alpine3.18 +FROM python:3.12.2-alpine3.18 RUN apk --no-cache add \ bash \