nova
Is there any way to have access to AWS cli within railway?
What I ended up doing was configuring a custom
railway.toml
for the build. For the build command I had it run a custom shell script called railway_setup.sh
. This shell script included the running of a python script using the aws boto3
client to retrieve the credentials.
railway.toml
boto3
can automatically make use of AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
env to authenticate, so there is no need to use the aws client
railway_setup.sh
export_code_artifact.py
10 replies
ERROR: failed to solve: process "/bin/bash -ol pipefail -c python -m venv /opt/venv && . /opt/venv/b
yeah, I'm aware of that. I deployed it with those three requirements first and it worked fine. Then I deployed it with the updated requirements that you sent and it also worked fine (after changing open-cv versions)
49 replies