Hello community!
This is a simple code that seems to install the dependencies properly, but when i try to use them, there is an error with "dependency not found in PATH", in this case curl:
docker_cli = (
dag.container()
.from_("docker/compose:latest")
.with_exec(["apk", "update", "&&", "apk", "add", "bash", "node", "curl", "&&","export", "PATH=$PATH:/usr/bin"])
.with_unix_socket("/var/run/docker.sock", docker)
.with_mounted_directory("/src", orch_dir)
.with_workdir("/src")
.with_exec(["curl", "--version"])
)
Thanks in advance for the help!