Merge pull request #494 from amshinde/fix-ownership-kata-binaries

kata-deploy: All binaries installed by kata should be writable by root
This commit is contained in:
James O. D. Hunt 2019-05-09 08:45:54 +01:00 committed by GitHub
commit 3c500df527
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ yum install -y bzip2 jq && \
curl -sOL ${KATA_URL}/${KATA_FILE} && \
mkdir -p /opt/kata-artifacts && \
tar xvf ${KATA_FILE} -C /opt/kata-artifacts/ && \
chown -R root:root /opt/kata-artifacts/ && \
rm ${KATA_FILE}
RUN \