Skip to content
Merged
Show file tree
Hide file tree
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 .github/workflows/build-and-validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-python-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -54,14 +54,14 @@ jobs:

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=${{ steps.python.outputs.version }}-trixie-${{ matrix.platform == 'linux/amd64' && 'amd64' || 'arm64' }}

- name: Build and push Python base image for ${{ matrix.platform }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: Dockerfile.python-base
Expand All @@ -84,7 +84,7 @@ jobs:
uses: actions/checkout@v6

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:

# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -58,15 +58,15 @@ jobs:
# Use docker/metadata-action to generate tags with an architecture suffix
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest-${{ matrix.arch }}
type=raw,value=${{ inputs.version }}-${{ matrix.arch }}

- name: Build and push Docker image for ${{ matrix.platform }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand All @@ -92,7 +92,7 @@ jobs:
uses: actions/checkout@v6

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -114,7 +114,7 @@ jobs:
packages: write
steps:
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -139,6 +139,8 @@ jobs:
release:
needs: manifest
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Types of Changes:

## [Unreleased]

## [3.0.1] - 2026-06-12

## [3.0.0] - 2026-01-28

## [1.11.1] - 2026-01-27
Expand All @@ -43,7 +45,8 @@ Types of Changes:

## [1.0.2] - 2023-09-14

[unreleased]: https://github.com/LockedThread/gtsam_docker/compare/3.0.0...HEAD
[unreleased]: https://github.com/LockedThread/gtsam_docker/compare/3.0.1...HEAD
[3.0.1]: https://github.com/LockedThread/gtsam_docker/compare/3.0.0...3.0.1
[3.0.0]: https://github.com/LockedThread/gtsam_docker/compare/1.11.1...3.0.0
[1.11.1]: https://github.com/LockedThread/gtsam_docker/compare/1.11.0...1.11.1
[1.11.0]: https://github.com/LockedThread/gtsam_docker/compare/1.10.0...1.11.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.python-base
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Build and push once per Python version:
# docker build -f Dockerfile.python-base -t ghcr.io/yourorg/python-optimized:3.11.2-trixie .
# docker push ghcr.io/yourorg/python-optimized:3.11.2-trixie
FROM debian:trixie-20260112
FROM debian:trixie-20260421
ARG PYTHON_VERSION=3.11.2

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
Loading