From 0c53a970d2f0426ea42b1012b0e2eaed7e93c739 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 3 Oct 2023 00:48:21 -0400 Subject: [PATCH] Revert "chore(deps): update python docker tag to v3.12" This reverts commit 45cd5a06cd7c96903f447f30aea3a1ef4a0658d2. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a5335739..9f31063ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 AS compile-image +FROM python:3.11 AS compile-image RUN python -m venv /opt/venv # Make sure we use the virtualenv ENV PATH="/opt/venv/bin:$PATH" @@ -7,7 +7,7 @@ COPY . /reacnetgenerator RUN pip install /reacnetgenerator && \ reacnetgenerator -h -FROM python:3.12 AS build-image +FROM python:3.11 AS build-image COPY --from=compile-image /opt/venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" CMD ["/bin/bash" ]