Hey everyone! I'm facing an issue while using the ...
# ask-community
e
Hey everyone! I'm facing an issue while using the
prefecthq/prefect:2.10.11-python3.10-conda
image. Whenever I include the ENTRYPOINT
["prefect", "agent", "start", "-q", "default"]
, I encounter the following error: 'Failed to deploy '<unknown> Dockerfile: Dockerfile': Status 400: {"message":"failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "prefect": executable file not found in $PATH: unknown"}'. Interestingly, I don't encounter this problem with the
prefecthq/prefect:2.10.11-python3.10
image. Any ideas on how to resolve this?
z
You are likely bypassing
bash
and not ending up in the activated environment
Can you try
["/bin/bash", "--login", "-c", "prefect agent start -q default"]
?
e
it worked, thank you!