If I set an environment variable, say ENV ADDRESSEE=world
, and I want to use it in the entry point script concatenated into a fixed string like:
ENTRYPOINT ["./greeting", "--message", "Hello, world!"]
with world
being the value of the environment varible, how do I do it? I tried using "Hello, $ADDRESSEE"
but that doesn't seem to work, as it takes the $ADDRESSEE
literally.