summaryrefslogtreecommitdiff
path: root/util/docker/coreboot-jenkins-test
diff options
context:
space:
mode:
authorTim Crawford <tcrawford@system76.com>2023-08-29 08:29:40 -0600
committerFelix Held <felix-coreboot@felixheld.de>2023-09-07 13:36:20 +0000
commitd3a89cdb749aad5bc378552eee3167003219b62d (patch)
tree8c1ddf6983ecca6143842d36fb3b1d92e8d9a243 /util/docker/coreboot-jenkins-test
parente352ea1ccd1292731ad80f3fa3152d39e15511ef (diff)
util/docker: Replace use of sed with build args
Change-Id: I9ab101e06ed670dfe6802f9bd0df128d056446db Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77540 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/docker/coreboot-jenkins-test')
-rw-r--r--util/docker/coreboot-jenkins-test/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/docker/coreboot-jenkins-test/Dockerfile b/util/docker/coreboot-jenkins-test/Dockerfile
index 030c4d2bbc..d353976381 100644
--- a/util/docker/coreboot-jenkins-test/Dockerfile
+++ b/util/docker/coreboot-jenkins-test/Dockerfile
@@ -1,4 +1,6 @@
-FROM coreboot/coreboot-jenkins-node:{{SDK_VERSION}}
+ARG SDK_VERSION
+
+FROM coreboot/coreboot-jenkins-node:${SDK_VERSION}
# Test the built image
RUN mkdir -p /tmp/work && \