DEV Community

Discussion on: Dockerizing DevOps

Collapse
 
eliises profile image
Eliise • Edited

I am a bit late on my reply, but have you seen also that you can have a container target steps, not just jobs? https://docs.microsoft.com/en-us/azure/devops/pipelines/process/tasks?view=azure-devops&tabs=yaml#step-target

This allows you to actually build the image in a previous job and push it into an ACR and then pull it down on the step.

I've got an example here: dev.to/eliises/dockerizing-devops-...