feat(repo): support local repositories (#4890)

* feat(repo): support local repositories

* fix tests

* test: fix client/server tests

* docs: update

* test: add fs tests

* test: do not update golden files if overridden

* docs: remove a comment about fs deprecation
This commit is contained in:
Teppei Fukuda
2023-07-31 14:27:36 +03:00
committed by GitHub
parent 3c19761875
commit d19c7d9f29
124 changed files with 454 additions and 446 deletions

View File

@@ -0,0 +1,15 @@
package builtin.dockerfile.DS002
exception[rules] {
instruction := input.stages[_][_]
instruction.Cmd == "label"
key := instruction.Value[i]
i % 2 == 0
key == "user.root"
value := instruction.Value[plus(i, 1)]
value == "\"allow\""
rules = [""]
}