Skip to content
Draft
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 release/oci-ingest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# - https://github.com/FernandoMiguel/Buildkit#mounttypecache

# Stage 1: Build wheel package
FROM python:3.12-slim-bookworm AS build
FROM python:3.13-slim-bookworm AS build

# Enable concurrent multi-arch builds.
# https://github.com/docker/buildx/issues/549#issuecomment-1788297892
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN pip install build
RUN python -m build --wheel ${BUILD}


FROM python:3.12-slim-bookworm AS package
FROM python:3.13-slim-bookworm AS package
Comment on lines 7 to +38
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Problem

#37 16.97   × Failed to build `pyodbc==5.1.0`
#37 16.97   ├─▶ The build backend returned an error
#37 16.97   ╰─▶ Call to `setuptools.build_meta.build_wheel` failed (exit status: 1)

-- https://github.com/crate/cratedb-toolkit/actions/runs/21888270520/job/63188289018?pr=620#step:7:1794

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


LABEL org.opencontainers.image.source="https://github.com/crate/cratedb-toolkit" \
org.opencontainers.image.title="cratedb-toolkit (ingest)" \
Expand Down
Loading