-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker_repositories() fails if user's workspace already contains "subpar" #77
Comments
Related: #55 |
mattmoor
added a commit
to mattmoor/rules_docker
that referenced
this issue
Jun 30, 2017
mattmoor
added a commit
to mattmoor/rules_docker
that referenced
this issue
Jun 30, 2017
mattmoor
added a commit
to mattmoor/rules_docker
that referenced
this issue
Jul 3, 2017
This avoids manual `excludes=[]` and `overrides={}`, which were suggested in the linked issues. We exclude things that have already been imported, so to override them, simply import them before `docker_repositories()` and the exclusion logic will handle the rest. Fixes: bazelbuild#55 Fixes: bazelbuild#77
mattmoor
added a commit
to mattmoor/rules_docker
that referenced
this issue
Jul 6, 2017
This avoids manual `excludes=[]` and `overrides={}`, which were suggested in the linked issues. We exclude things that have already been imported, so to override them, simply import them before `docker_repositories()` and the exclusion logic will handle the rest. Fixes: bazelbuild#55 Fixes: bazelbuild#77
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We use
subpar
for packaging Python. When trying to introduce Docker support using WORKSPACE file (following the example in README.md), I get the following:Seems like you're loading
subpar
as a part of docker_repositories(), and it's conflicting with the existingsubpar
target we already have.Maybe namespacing it in some way (e.g.
rules_docker_subpar
) could prevent this?The text was updated successfully, but these errors were encountered: