Provide full URL of deployed app in Environment

Hi @emmanuelcohenlaroque ,

I am looking with the team since it’s a very common request (until we support environment variable substitution/interpolation).

In the meantime, I would highly suggest creating your expected environment variable in your Dockerfile. E.g. you can do this:

FROM ...

ARG BE_HOST
ENV HTTPS_BE_HOST "https://${BE_HOST}"

... your build commands

This way for your application it’s transparent.