I am trying to create an Azure pipeline configuration where the pipeline uses my local Dockerfile to get the correct image.
I have the following python package structure
project
│
└───.azurepipelines
│ │ azure-pipelines.yml
│
└───.devcontainer
│ devcontainer.json
│ Dockerfile
I have found some related threads on the subject, but I don't quite understand how to achieve what I want. I want the rest of the steps in the pipe to be performed within the container. Do you have any suggestions?