We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9f2fb6 commit ec4430dCopy full SHA for ec4430d
tests/test_go.py
@@ -203,7 +203,9 @@ def test_rancher_build(
203
pytest.skip(f"Rancher requires {go_mod_version}, but got {go_version}")
204
205
(rancher_dir / "Dockerfile.dapper").write_text(
206
- from_line_regex.sub(f"FROM {container.image_url_or_id}", contents)
+ from_line_regex.sub(
207
+ f"FROM {container.image_url_or_id}\nENV GOMAXPROCS=2", contents
208
+ )
209
)
210
211
host.check_output(f"cd {rancher_dir} && {dapper} build")
0 commit comments