Skip to content

Commit

Permalink
Modernize base Docker image
Browse files Browse the repository at this point in the history
This commit migrates the StreamFlow Docker image from Python 3.11
to Python 3.13 and from Alpine 3.16 to Alpine 3.21
  • Loading branch information
GlassOfWhiskey committed Feb 2, 2025
1 parent 2ac86c8 commit bfe3290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit bfe3290

Please sign in to comment.