Skip to content

Commit

Permalink
Add JWKS URL flag to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LRitzdorf committed Jul 8, 2024
1 parent e884218 commit 40858b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ COPY cloud-init-server /usr/local/bin/
ENV SMD_URL="http://smd:27779"
ENV SMD_TOKEN=""
ENV LISTEN_ADDR="0.0.0.0:27777"
ENV JWKS_URL=""

# nobody 65534:65534
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} --smd-token ${SMD_TOKEN}
CMD /usr/local/bin/cloud-init-server --listen ${LISTEN_ADDR} --smd-url ${SMD_URL} --smd-token ${SMD_TOKEN} --jwks-url ${JWKS_URL}


ENTRYPOINT ["/sbin/tini", "--"]

0 comments on commit 40858b4

Please sign in to comment.