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.
This commit is contained in:
Erik Wilson 2019-02-26 00:12:44 -07:00 committed by Darren Shepherd
parent 11bedd0106
commit 02daa0b77f

View File

@ -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