Fix Dockerfile ARG declaration
Some checks failed
Build bootupd with systemd-boot / build (push) Failing after 3s

- Add ARG release-name=unstable before FROM statement
- Use name syntax for proper variable substitution
- Fixes Docker build error: invalid reference format
- Docker build now properly resolves buildpack-deps:unstable
This commit is contained in:
robojerk 2025-09-05 09:31:32 -07:00
parent 50beff8a03
commit fe3c11f185

View file

@ -1,4 +1,5 @@
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