From ea88210e125b921a41d4d9b88e56b4beb66543d8 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Sat, 14 Oct 2017 12:33:22 -0400 Subject: [PATCH] Fix multistage example permissions Fixes #26. --- Dockerfile.multistage-example | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.multistage-example b/Dockerfile.multistage-example index aceac93..ccf2275 100644 --- a/Dockerfile.multistage-example +++ b/Dockerfile.multistage-example @@ -8,6 +8,7 @@ FROM ekidd/rust-musl-builder AS builder # You would normally add your source code to /home/rust/src like this. # ADD . ./ +# RUN sudo chmod -R . # ...but we're going to just create a new app instead for demo purposes. RUN cd .. && rm -r src && USER=rust cargo new --vcs none --bin --name hello src