From 24b86107ca78209f5d81685d653e2866fcf8d9ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sun, 24 Jul 2022 12:15:28 +0200 Subject: [PATCH] udp dockerfile: fix newline env arg issues --- docker/aquatic_udp.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/aquatic_udp.Dockerfile b/docker/aquatic_udp.Dockerfile index db57b98..d88d098 100644 --- a/docker/aquatic_udp.Dockerfile +++ b/docker/aquatic_udp.Dockerfile @@ -32,8 +32,8 @@ COPY --from=builder /usr/src/aquatic/target/release/aquatic_udp ./ # list file contents at runtime COPY <<-"EOT" ./entrypoint.sh #!/bin/bash -echo "$CONFIG_FILE_CONTENTS" > ./config.toml -echo "$ACCESS_LIST_CONTENTS" > ./access-list.txt +echo -e "$CONFIG_FILE_CONTENTS" > ./config.toml +echo -e "$ACCESS_LIST_CONTENTS" > ./access-list.txt exec ./aquatic_udp -c ./config.toml "$@" EOT