From 8508f631fc888eaa0c029251173e558801532d94 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 3 Oct 2023 00:57:09 -0400 Subject: [PATCH] Revert "chore(deps): update python docker tag to v3.12" (#2022) Reverts tongzhugroup/reacnetgenerator#2021 --- 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" ]