summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
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