From 679af2b27ea8bef9e3b1777dfa2c039334f29086 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Mon, 30 Sep 2024 15:09:01 -0700 Subject: [PATCH] Update releases of swift and python-swiftclient --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d88f28..ef5fa05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,9 +28,9 @@ RUN apt-get update && \ RUN apt-get update && \ apt-get install -y --no-install-recommends git-core && \ - git clone --branch 3.11.1 --single-branch --depth 1 https://github.com/openstack/python-swiftclient.git /usr/local/src/python-swiftclient && \ + git clone --branch 4.6.0 --single-branch --depth 1 https://github.com/openstack/python-swiftclient.git /usr/local/src/python-swiftclient && \ cd /usr/local/src/python-swiftclient && python3 setup.py develop && \ - git clone --branch 2.32.0 --single-branch --depth 1 https://github.com/openstack/swift.git /usr/local/src/swift && \ + git clone --branch 2.34.0 --single-branch --depth 1 https://github.com/openstack/swift.git /usr/local/src/swift && \ cd /usr/local/src/swift && python3 setup.py develop && \ apt-get remove -y --purge git-core git && \ apt-get autoremove -y --purge && \