From 31c43fd60d3b567e75238f494b8458f233b4d3e5 Mon Sep 17 00:00:00 2001 From: Travis Cotton Date: Wed, 10 Jan 2024 17:33:58 +0000 Subject: [PATCH] updated dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 969c4e4..1a24dd2 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="27777" +ENV CI_LISTEN_PORT=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", "--"]