From d723d6bbca5b161f63d672dcef8676ddb69a9218 Mon Sep 17 00:00:00 2001 From: Jason Sollom Date: Wed, 10 Jan 2024 10:58:14 -0600 Subject: [PATCH] CASMCMS-8879: Unpin the Alpine version from 3.18 back to 3 The python virtual environment change should enable us to move ahead to later versions of Alpine 3 beyond 3.18. These later versions should not cause problems due PEP-668 because the resolution to CASMCMS-8879 fixed that issue. Pinning the version to 3.18 prevented us from encountering the PEP-668 problem because it pinned to a version of Alpine that did not introduce the issue. --- CHANGELOG.md | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4f4eb5..9ef70afe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Fixed -- Fix a broken build caused by PEP-668. +- Fix a broken build caused by PEP-668. Pin Alpine version to 3. This is less restrictive. ## [2.12.0] - 2024-01-02 ### Changed diff --git a/Dockerfile b/Dockerfile index a17c0072..a08bf598 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # Upstream Build Args ARG OPENAPI_IMAGE=artifactory.algol60.net/csm-docker/stable/docker.io/openapitools/openapi-generator-cli:v6.6.0 -ARG ALPINE_BASE_IMAGE=artifactory.algol60.net/csm-docker/stable/docker.io/library/alpine:3.18 +ARG ALPINE_BASE_IMAGE=artifactory.algol60.net/csm-docker/stable/docker.io/library/alpine:3 # Generate Code FROM $OPENAPI_IMAGE as codegen