Fix Dockerfile ARG declaration
Some checks failed
Build bootupd with systemd-boot / build (push) Failing after 3s
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:
parent
50beff8a03
commit
fe3c11f185
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue