From 5b9b8fd51430aa9d407f9a07621981fc1fd9cbb0 Mon Sep 17 00:00:00 2001 From: Charles Lanahan Date: Fri, 5 Apr 2024 13:39:27 -0400 Subject: [PATCH] Updated docker images to use python 3.12 (#740) --- 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 \