From 02daa0b77f4c227af9d35f9fc10b571f546ad44c Mon Sep 17 00:00:00 2001 From: Erik Wilson Date: Tue, 26 Feb 2019 00:12:44 -0700 Subject: [PATCH] Chmod /tmp to 1777 for e2e tests The kubernetes e2e tests will mount /tmp and verify permissions, fix to match the expectations of the test for our image. --- package/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/Dockerfile b/package/Dockerfile index 03cce2735f..c557cd0b1c 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -9,6 +9,7 @@ RUN cd image/bin && \ FROM scratch COPY --from=base /image / +RUN chmod 1777 /tmp VOLUME /var/lib/rancher/k3s VOLUME /var/lib/cni VOLUME /var/log