From 87d749ee4fc69f7db839876f63d15c6b1f7ce12d Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Sat, 14 Nov 2020 21:36:41 -0500 Subject: [PATCH] I love it when capitalization matters, contrary to the docs --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8a7c279e..12946c08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,13 +35,13 @@ FROM debian:buster-slim AS zebrad-release COPY --from=builder /zebra/target/release/zebrad / -ARG checkpoint_sync=true -ARG network=Mainnet +ARG CHECKPOINT_SYNC=true +ARG NETWORK=Mainnet RUN printf "[consensus]\n" >> /zebrad.toml -RUN printf "checkpoint_sync = ${checkpoint_sync}\n" >> /zebrad.toml +RUN printf "checkpoint_sync = ${CHECKPOINT_SYNC}\n" >> /zebrad.toml RUN printf "[network]\n" >> /zebrad.toml -RUN printf "network = '${network}'\n" >> /zebrad.toml +RUN printf "network = '${NETWORK}'\n" >> /zebrad.toml RUN printf "[state]\n" >> /zebrad.toml RUN printf "cache_dir = '/zebrad-cache'\n" >> /zebrad.toml RUN printf "memory_cache_bytes = 52428800\n" >> /zebrad.toml