Switch CI builds to docker buildx (#146)
Some checks failed
Build Container / build (push) Failing after 4s

## Summary
- Replace deprecated `docker build` with `docker buildx build` in the build-push-image composite action
- Remove redundant build/run comments from nettest Dockerfile

## Test plan
- [ ] Merge and tag `nettest-v1.1.0` (or similar) to trigger the build-container workflow
- [ ] Verify the build succeeds without the deprecation warning

Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/146
This commit is contained in:
Erich Blume 2026-02-10 21:03:41 -08:00
commit cb36f1784f
3 changed files with 2 additions and 7 deletions

View file

@ -30,7 +30,7 @@ runs:
shell: bash
run: |
echo "Building ${{ inputs.image_name }}:${{ inputs.version }}"
docker build \
docker buildx build \
--tag ${{ inputs.image_name }}:${{ inputs.version }} \
--file ${{ inputs.context }}/${{ inputs.dockerfile }} \
${{ inputs.context }}