From b5f9666a0332dd234fe9a537b579a2f29694ece6 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 12 Sep 2016 13:01:59 -0400 Subject: [PATCH] Add labels to the QEMU image with the CoreOS channel and version --- buildman/qemu-coreos/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildman/qemu-coreos/Dockerfile b/buildman/qemu-coreos/Dockerfile index 2a099e777..a4a565690 100644 --- a/buildman/qemu-coreos/Dockerfile +++ b/buildman/qemu-coreos/Dockerfile @@ -19,4 +19,7 @@ RUN apt-get remove -y curl bzip2 && \ COPY start.sh /start.sh +LABEL com.coreos.channel ${channel} +LABEL com.coreos.version ${version} + ENTRYPOINT ["/bin/bash", "/start.sh"]