Hello everyone, I'm trying to get a deployment to a docker worker pool to work, but I'm getting the following error:
prefect.utilities.dockerutils.BuildError: manifest for prefecthq/prefect:3.0.11-python3.11 not found: manifest unknown: manifest unknown
The deploy call looks like this:
my_function.deploy(
name=deployment_name,
work_pool_name="my-docker-pool",
image="my-first-deployment-image:tutorial",
push=False,
job_variables={
"image_pull_policy": "Never",
"auto_remove": True,
"env": {
"PREFECT_API_URL": "<http://host.docker.internal:4200/api>",
"PREFECT_SERVER_API_HOST": "0.0.0.0",
},
},
)
I can provide further information as required, but I am unsure where to start looking. This was working well with prefect 2. Notice that it is not my custom image that it does not found, but an underlying prefect one