-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modernize base Docker image and Helm version (#655)
This commit migrates the StreamFlow Docker image from Python 3.11 to Python 3.13 and from Alpine 3.16 to Alpine 3.21. In addition, it bumps Helm in the Docker container from v3.7.2 to v3.17.0.
- Loading branch information
1 parent
2ac86c8
commit 2170261
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.11-alpine3.16 AS builder | ||
FROM python:3.13-alpine3.21 AS builder | ||
ARG HELM_VERSION | ||
|
||
ENV VIRTUAL_ENV="/opt/streamflow" | ||
|
@@ -38,7 +38,7 @@ RUN apk --no-cache add \ | |
&& python -m venv ${VIRTUAL_ENV} \ | ||
&& pip install . | ||
|
||
FROM python:3.11-alpine3.16 | ||
FROM python:3.13-alpine3.21 | ||
LABEL maintainer="[email protected]" | ||
|
||
ENV VIRTUAL_ENV="/opt/streamflow" | ||
|