From 8160a376c32e5b42c9ae8cd250763861ddc4bf6c Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Fri, 24 Nov 2023 06:37:49 +0000 Subject: [PATCH] Add Salt 3006 to the list Signed-off-by: Pedro Algarvio --- README.md | 1 + containers.yml | 1 + salt/3006.Dockerfile | 8 ++++++++ salt/README.md | 1 + 4 files changed, 11 insertions(+) create mode 100644 salt/3006.Dockerfile diff --git a/README.md b/README.md index 1a2120d..111be3c 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,7 @@ will be commited. - salt:3003 - `ghcr.io/saltstack/salt-ci-containers/salt:3003` - salt:3004 - `ghcr.io/saltstack/salt-ci-containers/salt:3004` - salt:3005 - `ghcr.io/saltstack/salt-ci-containers/salt:3005` +- salt:3006 - `ghcr.io/saltstack/salt-ci-containers/salt:3006` - salt:current - `ghcr.io/saltstack/salt-ci-containers/salt:current` ## Custom diff --git a/containers.yml b/containers.yml index b59cd2a..b68d1c1 100644 --- a/containers.yml +++ b/containers.yml @@ -8,6 +8,7 @@ salt: - "3003" - "3004" - "3005" + - "3006" - "current" # <---- Salt Releases ------------------------------------------------------------------------------------- diff --git a/salt/3006.Dockerfile b/salt/3006.Dockerfile new file mode 100644 index 0000000..871f241 --- /dev/null +++ b/salt/3006.Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.10 + +RUN apt update \ + && apt install -y rustc build-essential +RUN echo "cython<3" > /tmp/constraint.txt \ + && export PIP_CONSTRAINT=/tmp/constraint.txt \ + && export USE_STATIC_REQUIREMENTS=1 \ + && python -m pip install salt~=3006.0 diff --git a/salt/README.md b/salt/README.md index 47cba07..12c82db 100644 --- a/salt/README.md +++ b/salt/README.md @@ -4,4 +4,5 @@ - salt:3003 - `ghcr.io/saltstack/salt-ci-containers/salt:3003` - salt:3004 - `ghcr.io/saltstack/salt-ci-containers/salt:3004` - salt:3005 - `ghcr.io/saltstack/salt-ci-containers/salt:3005` +- salt:3006 - `ghcr.io/saltstack/salt-ci-containers/salt:3006` - salt:current - `ghcr.io/saltstack/salt-ci-containers/salt:current`