Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build Stage
FROM python:3.14-alpine AS builder
FROM python:3.13-alpine AS builder

# Copy only whats needed for dependencies first
COPY pyproject.toml LICENSE README.MD ./
Expand All @@ -14,7 +14,7 @@ COPY ./src ./src
RUN pip wheel --no-cache-dir --no-deps --wheel-dir=/wheels .

# Stage 2: Build the final image
FROM python:3.14-alpine
FROM python:3.13-alpine

ARG VERSION
ARG GIT_SHA
Expand Down