Update content.md

Change absolute path to relative in cargo install
This commit is contained in:
German Lashevich 2019-01-07 21:34:08 +01:00 committed by GitHub
parent d24b7323da
commit 694de3d443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"]
```