From d0cff0c2ade0364ef2c05f00cb5b9c0d61d2a044 Mon Sep 17 00:00:00 2001 From: Travis Cotton Date: Wed, 10 Jan 2024 17:37:21 +0000 Subject: [PATCH] updated dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a24dd2..ee08e10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,11 +41,11 @@ COPY cloud-init-server /usr/local/bin/ USER 65534:65534 ENV SMD_URL=http://smd:27779 -ENV CI_LISTEN_PORT=27777 +ENV CI_LISTEN=":27777" # Set up the command to start the service. CMD /usr/local/bin/cloud-init-server \ - --ci-listen ":${CI_LISTEN}" \ + --ci-listen $CI_LISTEN \ --smd-endpoint ${SMD_URL} ENTRYPOINT ["/sbin/tini", "--"]