Update installation and update docs with the new plm tool

Also updates the Docker files
This commit is contained in:
Bat
2018-10-06 11:59:39 +01:00
parent d0d1210e21
commit caa4c38948
3 changed files with 59 additions and 28 deletions
+3 -2
View File
@@ -14,7 +14,8 @@ WORKDIR /app
COPY Cargo.toml Cargo.lock ./
RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.2.0'
COPY . .
RUN cargo build
RUN cargo install --force
RUN cargo install --path plume-cli --force
RUN rm -rf target/debug/incremental
CMD ["cargo", "run"]
CMD ["plume"]
EXPOSE 7878