From 694de3d4435d4ebfeb3d9969453d75a51fcf31e7 Mon Sep 17 00:00:00 2001 From: German Lashevich Date: Mon, 7 Jan 2019 21:34:08 +0100 Subject: [PATCH] Update content.md Change absolute path to relative in cargo install --- rust/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/content.md b/rust/content.md index 83f4332b2..6f16acea0 100644 --- a/rust/content.md +++ b/rust/content.md @@ -18,7 +18,7 @@ FROM %%IMAGE%%:1.31 WORKDIR /usr/src/myapp COPY . . -RUN cargo install --path /usr/src/myapp +RUN cargo install --path . CMD ["myapp"] ```