From 477eac7f19721d1bc18eac099708e32ad125b259 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 13 Nov 2020 23:53:26 -0500 Subject: [PATCH] Properly use Dockerfile ARG values --- .github/workflows/manual-deploy.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/manual-deploy.yml b/.github/workflows/manual-deploy.yml index e0db3962..914ae0d1 100644 --- a/.github/workflows/manual-deploy.yml +++ b/.github/workflows/manual-deploy.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: network: - default: 'mainnet' + default: 'Mainnet' checkpoint_sync: default: true diff --git a/Dockerfile b/Dockerfile index d10dc0c7..8a7c279e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,9 +39,9 @@ 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