From d0f6509e015fb295ae53bdb304b0150be36018e4 Mon Sep 17 00:00:00 2001 From: wrider Date: Tue, 9 Jul 2019 16:38:09 -0400 Subject: [PATCH] Add exe chmod to run_rtmgr.sh run_rtmgr.sh was under 644. Need to have exe to be used as container entry. Change-Id: I49bab179069cece69d26676a3ae060c8b4632fa7 Signed-off-by: wrider --- Dockerfile | 1 + container-tag.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6bbbb5c..a78ab2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,5 +55,6 @@ FROM ubuntu:16.04 COPY --from=rtmgrbuild /go/bin/rtmgr / COPY --from=rtmgrbuild /run_rtmgr.sh / RUN mkdir /db && touch /db/rt.json && chmod 777 /db/rt.json +RUN chmod 755 /run_rtmgr.sh CMD /run_rtmgr.sh diff --git a/container-tag.yaml b/container-tag.yaml index 5b938c6..b9299ce 100644 --- a/container-tag.yaml +++ b/container-tag.yaml @@ -2,4 +2,4 @@ # By default this file is in the docker build directory, # but the location can configured in the JJB template. --- -tag: 0.3.0 +tag: 0.3.1 -- 2.16.6