Dockerfile... variable usage
Some checks reported errors
continuous-integration/drone/tag Build was killed

This commit is contained in:
Paolo Asperti 2022-02-17 15:42:14 +01:00
parent 351f43f69e
commit da909c8c53
Signed by: paspo
GPG Key ID: 06D46905D19D5182
2 changed files with 4 additions and 4 deletions

View File

@ -9,9 +9,9 @@ local Pipeline(os, release) = {
pull: "always",
settings: {
dockerfile: "Dockerfile",
build_args: {
BUILD_FROM: os + ":" + release,
},
build_args: [
"BUILD_FROM=" + os + ":" + release,
],
registry: "docker.asperti.com",
repo: "docker.asperti.com/paspo/docker-deb-builder",
username: {

View File

@ -1,4 +1,4 @@
ARG BUILD_FROM=debian:bullseye
ARG BUILD_FROM
FROM ${BUILD_FROM}
RUN \