Skip to content

Commit ecc9c49

Browse files
authored
fix: include Dockerfile-runner in codegen package (#684)
1 parent 8da3e46 commit ecc9c49

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
File renamed without changes.

src/codegen/cli/commands/start/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ def _handle_existing_container(repo_config: RepoConfig, container: DockerContain
7272

7373
def _build_docker_image(codegen_root: Path) -> None:
7474
platform = _get_platform()
75+
dockerfile_path = Path(__file__).parent / "Dockerfile-runner"
7576
build_cmd = [
7677
"docker",
7778
"buildx",
7879
"build",
7980
"--platform",
8081
platform,
8182
"-f",
82-
str(codegen_root / "Dockerfile-runner"),
83+
str(dockerfile_path),
8384
"-t",
8485
"codegen-runner",
8586
"--load",

0 commit comments

Comments
 (0)