ok.
I have three environments in kedro.
local, dev, and prod.
for each of those I have different aws credentials stored in different .env files: lets say: .env.local, .
env.dev, and .env.prod.
when I’m running the different environments locally, I will do:
I simlink .env->.
env.dev
then: kedro run --env=dev for example
and I use the template config loader in settings.py to load the corresponding .env file.
now my question is regarding the deployment with docker.
I want to have an image in ECR, and then create different enpoints with the same image in ECS.
I will need to pass those different .env files to the image somehow