So my Dockerfile is written like so:
# set env vars for linux user
ENV LINUX_USER="kbuser"
...
... # other stuff
...
USER kbuser
But I would like to use
USER $LINUX_USER
So that I only have to write the username in one place in the file. But this doesn't work.
How can I get around this?
Thank you.