You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying multiple flows with prefect.yaml users want the ability to build a single common Docker image as opposed to one per flow. Managing and building 10s or 100s of images becomes burdensome when you are building a single Docker container with all your code.
Consider the following Dockerfile:
FROM prefecthq/prefect:3-latest
COPY . .
RUN pip install -r requirements.txt
This image will identical for all deployments, but will be built once for each deployment.
Describe the proposed behavior
When running prefect deploy with multiple deployments in a prefect.yaml file that share a common image, the image should be built only once.
Example Use
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
@zzstoatzz hmm that definitely looks like it solves it. I must have been using an older version. I'll close this issue and can always re-open if necessary. Apologies for the confusion!
Describe the current behavior
When deploying multiple flows with prefect.yaml users want the ability to build a single common Docker image as opposed to one per flow. Managing and building 10s or 100s of images becomes burdensome when you are building a single Docker container with all your code.
Consider the following Dockerfile:
This image will identical for all deployments, but will be built once for each deployment.
Describe the proposed behavior
When running prefect deploy with multiple deployments in a prefect.yaml file that share a common image, the image should be built only once.
Example Use
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: