Skip to content
Open
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.base
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# ============================================================================
# Stage 0: Shared build toolchain (base for all compiler stages)
# ============================================================================
FROM python:3.12-slim-bookworm AS compiler-toolchain
FROM python:3.14-slim-bookworm AS compiler-toolchain
ARG TARGETARCH
ARG YARA_VERSION=4.3.1
ARG RADARE2_VERSION=6.0.4
Expand Down Expand Up @@ -129,7 +129,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
# ============================================================================
# Stage 2: Final base image (no build toolchain, runtime-only)
# ============================================================================
FROM python:3.12-slim-bookworm AS base
FROM python:3.14-slim-bookworm AS base
ARG TARGETARCH

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down
Loading