jack
02/15/2022, 12:25 AMRUN pip install -r requirements.txt
that requires network it just hangs.Kevin Kho
networkMode: bridge
for the AWS ECS task and it doesn’t work?jack
02/15/2022, 12:30 AMjack
02/15/2022, 12:31 AMjack
02/15/2022, 12:32 AMjack
02/15/2022, 12:32 AMKevin Kho
jack
02/15/2022, 12:41 AMdocker run -it python:3.9 bash
to run on workspaces (with network) is to use the --network=host
option.
docker run -it --network=host python:3.9 bash
But I'm not sure if there are any arguments for ECSRun
that would add --network=host
to the docker build ...
commands as it is building the docker image.Kevin Kho
jack
02/15/2022, 12:53 AMjack
02/15/2022, 12:54 AMjack
02/15/2022, 2:51 PM