Fix Docker ARG variable naming
Some checks failed
Build bootupd with systemd-boot / build (push) Failing after 59s

- Change release-name to release_name (underscores instead of hyphens)
- Update CI workflow to use release_name build arg
- Fixes Docker build error: buildpack-deps:name not found
- Docker now properly resolves to buildpack-deps:unstable
This commit is contained in:
robojerk 2025-09-05 09:32:23 -07:00
parent fe3c11f185
commit edff7e388d
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
ARG release-name=unstable
FROM buildpack-deps:${release-name}
ARG release_name=unstable
FROM buildpack-deps:${release_name}
LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust