I'm trying to setup container-use with my legacy Rails project. In Rails there was a convention to store secrets in config/secrets.yml, which is not committed to repository, so it's not copied to environment by default. How to copy a file to environment manually?
I tried to use file reference with secrets https://container-use.com/secrets#secret-types and then do
container-use config install-command add "echo $SECRETS > ./config/secrets.yml" but now the formatting is screwed up, and the file is not valid yml.
Is there some way to do this with container-use or maybe there's an escape hatch which I can use, to use dagger for the environment directly?