From 21630be5addfde91e1184de047ba75291f9f9214 Mon Sep 17 00:00:00 2001 From: Travis Cotton Date: Wed, 15 Jan 2025 11:56:17 -0700 Subject: [PATCH] adding wireguard packages to Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 230f089..a7f2aad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache tini # Include curl in the final image. RUN set -ex \ && apk update \ - && apk add --no-cache curl tini \ + && apk add --no-cache curl tini wireguard-tools iputils iproute2 \ && rm -rf /var/cache/apk/* \ && rm -rf /tmp/* @@ -27,5 +27,4 @@ USER 65534:65534 # Set up the command to start the service. CMD /usr/local/bin/cloud-init-server --listen ${LISTEN_ADDR} --smd-url ${SMD_URL} --token-url ${TOKEN_URL} --jwks-url ${JWKS_URL:-""} - ENTRYPOINT ["/sbin/tini", "--"]