Skip to content

Commit deab1a7

Browse files
committed
Update the underlying python containers to "3.10-bookworm"
The existing 3.9 is based on debian buster and isn't getting security updates ... or any updates really. This change updates to a base container that will get updates for a while. I picked 3.10 rather than 3.11 as 3.10 is part of the bobcat[1] [1] https://governance.openstack.org/tc/reference/runtimes/2023.2.html Change-Id: I606389a81ab189b1abf2c700acf5c5543a09165a
1 parent 46431ed commit deab1a7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.zuul.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@
161161
description: Build Docker images.
162162
allowed-projects: openstack/python-openstackclient
163163
requires:
164-
- python-builder-3.9-container-image
165-
- python-base-3.9-container-image
164+
- python-builder-3.10-bookworm-container-image
165+
- python-base-3.10-bookworm-container-image
166166
provides: osc-container-image
167167
vars: &osc_image_vars
168168
docker_images:
@@ -175,8 +175,8 @@
175175
description: Build Docker images and upload to Docker Hub.
176176
allowed-projects: openstack/python-openstackclient
177177
requires:
178-
- python-builder-3.9-container-image
179-
- python-base-3.9-container-image
178+
- python-builder-3.10-bookworm-container-image
179+
- python-base-3.10-bookworm-container-image
180180
provides: osc-container-image
181181
secrets:
182182
- name: docker_credentials

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM docker.io/opendevorg/python-builder:3.9 as builder
16+
FROM docker.io/opendevorg/python-builder:3.10-bookworm as builder
1717

1818
COPY . /tmp/src
1919
RUN assemble
2020

21-
FROM docker.io/opendevorg/python-base:3.9
21+
FROM docker.io/opendevorg/python-base:3.10-bookworm
2222

2323
COPY --from=builder /output/ /output
2424
RUN /output/install-from-bindep

0 commit comments

Comments
 (0)