From b65968dc3110030077e0a20a932425bf8eb64c91 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 13 Sep 2022 19:17:18 +0200 Subject: Prevent DB check from sqlx --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 221d480..d9c6af6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM rust:latest as cargo-build WORKDIR /usr/src/verden COPY . . -ARG DATABASE_URL +ARG DATABASE_URL="postgres://user:password@localhost:5432/verden" RUN cargo install --path . && cargo install sqlx-cli EXPOSE 9090 -- cgit v1.2.3-71-g8e6c