We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9123b5c commit 53ee574Copy full SHA for 53ee574
docs/build-and-test.md
@@ -70,3 +70,14 @@ go test ./pkg/commands
70
71
Integration tests are located under `integration_tests` directory.
72
Check [integration tests](/docs/integration-tests.md) doc for more information.
73
+
74
+## Updating the dockerfile-json dependency
75
76
+The `github.com/konflux-ci/dockerfile-json` dependency uses a replace
77
+directive in `go.mod` that points to a specific commit from the dev branch.
78
+Update to the latest version with:
79
80
+```bash
81
+go mod edit -replace github.com/keilerkonzept/dockerfile-json=github.com/konflux-ci/dockerfile-json@dev
82
+go mod tidy
83
+```
0 commit comments