From 8a57fd420ae596f9dfecc8cad46808c3e0800fe3 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sun, 21 Apr 2019 16:37:54 -0700 Subject: [PATCH] Caching diesel-cli just in case. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 09875849..2f4e3e3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,9 @@ COPY server/migrations ./migrations/ RUN cargo build --frozen --release --bin lemmy RUN mv /app/server/target/release/lemmy /app/lemmy +# Get diesel-cli on there just in case +RUN cargo install diesel_cli --no-default-features --features postgres + # The output image # FROM debian:stable-slim # RUN apt-get -y update && apt-get install -y postgresql-client -- 2.44.1