From 060d272d37736bed2380a2b8b28bdbf2d5a8f141 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 26 Jun 2023 11:31:51 -0400 Subject: [PATCH] test.Dockerfile: Sync Python, Poetry versions with CI This really ought to have been done at the same time as #1493/#1519, but this was overlooked due to CI-related oversights. --- cryptol-remote-api/test.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cryptol-remote-api/test.Dockerfile b/cryptol-remote-api/test.Dockerfile index 1ec2cdff5..1ecf83dfc 100644 --- a/cryptol-remote-api/test.Dockerfile +++ b/cryptol-remote-api/test.Dockerfile @@ -1,8 +1,8 @@ -FROM python:3.7 +FROM python:3.11 # Intended to be built from the root of the cryptol git repository COPY cryptol-remote-api/python python -RUN pip3 install 'poetry==1.1.5' +RUN pip3 install 'poetry==1.4.2' RUN cd python && poetry install COPY cryptol-remote-api/test-cryptol-remote-api.py /python/entrypoint.py WORKDIR /python