From c30e38cd3f7cf793eeebb867f5f00d0ede3d533c Mon Sep 17 00:00:00 2001 From: Peter Boers Date: Mon, 21 Oct 2024 13:24:30 +0200 Subject: [PATCH] Remove setuptools from the container --- .bumpversion.cfg | 2 +- Dockerfile | 1 + orchestrator/__init__.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 168b0d9c9..ddc8bc6f1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.8.0rc2 +current_version = 2.8.0rc3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P\d+))? diff --git a/Dockerfile b/Dockerfile index 14ebe5617..5f908dc69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update && apt-get install --yes git RUN pip install pip --upgrade RUN pip install orchestrator-core==${VERSION} +RUN pip uninstall setup-tools RUN useradd orchestrator USER orchestrator diff --git a/orchestrator/__init__.py b/orchestrator/__init__.py index 43cc2a325..07d5ce81e 100644 --- a/orchestrator/__init__.py +++ b/orchestrator/__init__.py @@ -13,7 +13,7 @@ """This is the orchestrator workflow engine.""" -__version__ = "2.8.0rc2" +__version__ = "2.8.0rc3" from orchestrator.app import OrchestratorCore from orchestrator.settings import app_settings