Skip to content

Commit 0c09086

Browse files
authored
fix(CLI): wrong path for contracts folder (#264)
1 parent e9a306b commit 0c09086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

silverback/_build_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def dockerfile_template(
4545
dockerfile.append("RUN ape plugins install -U .")
4646

4747
if contracts_folder:
48-
dockerfile.append(f"COPY {contracts_folder} /app")
48+
dockerfile.append(f"COPY {contracts_folder} /app/{contracts_folder}")
4949
dockerfile.append("RUN ape compile")
5050

5151
bot_src = f"{bot_path.parent}/{bot_path.name}" if include_bot_dir else bot_path.name

0 commit comments

Comments
 (0)