dockerfile-template: Actually run setup-ubl script
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: If186c7409c03b481e28eb7fc3afee364bfa20480
diff --git a/dockerfile-template b/dockerfile-template
index 44b78bf..27e8f2d 100644
--- a/dockerfile-template
+++ b/dockerfile-template
@@ -27,6 +27,7 @@
COPY setup-sshd /usr/sbin/setup-sshd
COPY stdout-flush-wrapper.sh /usr/bin/stdout-flush-wrapper.sh
COPY stdout-flush-wrapper-debug.sh /usr/bin/stdout-flush-wrapper-debug.sh
+COPY setup-ubl /root/
COPY swskt-linaro-root*.lic /root/
# Add the FVP model tarball
@@ -40,5 +41,8 @@
--verbose \
--destination ${MODEL_DIR}/${MODEL} && rm -f ${MODEL_DIR}/${MODEL}.sh || true
+# Setup UBL licensing
+RUN /root/setup-ubl
+
EXPOSE 22
ENTRYPOINT ["/usr/sbin/setup-sshd"]