From fe3df749865d5db1a6fcb98bccba64e601232e12 Mon Sep 17 00:00:00 2001 From: Bat Date: Sun, 7 Oct 2018 19:12:10 +0100 Subject: [PATCH] Fix Docker build (forgot --features) And update diesel_cli in Docker too --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fa18d11..bcc3a98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libssl-dev WORKDIR /app COPY Cargo.toml Cargo.lock ./ -RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.2.0' +RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.3.0' COPY . . -RUN cargo install --force -RUN cargo install --path plume-cli --force +RUN cargo install --force --no-default-features --features postgres +RUN cargo install --path plume-cli --force --no-default-features --features postgres RUN rm -rf target/debug/incremental CMD ["plume"] EXPOSE 7878