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
Right now az acr run follows az acr build except it doesn't guarantee a Dockerfile is present, so what can happen is you can have a dockerignore which ignores the Dockerfile* and have az acr build work but az acr run with a simple build: -f Dockerfile . step will fail.
The text was updated successfully, but these errors were encountered:
After discussion: add a bool parameter to ignore a dockerignore; print a log statement saying something like "detected a dockerignore, ignoring files specified in the dockerignore..."
Right now
az acr run
followsaz acr build
except it doesn't guarantee a Dockerfile is present, so what can happen is you can have adockerignore
which ignores theDockerfile*
and haveaz acr build
work butaz acr run
with a simplebuild: -f Dockerfile .
step will fail.The text was updated successfully, but these errors were encountered: