From 964d4e9b0a3f1483a38cb16cdbbdea191bb2d58c Mon Sep 17 00:00:00 2001 From: lhhyung Date: Wed, 15 Oct 2025 16:58:43 +0900 Subject: [PATCH] build: Set specific base image versions for 2.0.96 hotfix release --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8580acdb..2ef3acfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM cloudforet/python-core:2.0 +FROM cloudforet/python-core:2.0.96 ARG PACKAGE_VERSION ENV PYTHONUNBUFFERED 1 ENV SPACEONE_PORT 50051 @@ -17,7 +17,7 @@ WORKDIR ${SRC_DIR} RUN python3 setup.py install && rm -rf /tmp/* -RUN pip install --upgrade spaceone-api +RUN pip install --upgrade spaceone-api==2.0.266 EXPOSE ${SPACEONE_PORT}