Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion silverback/_build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def dockerfile_template(
dockerfile.append("RUN ape plugins install -U .")

if contracts_folder:
dockerfile.append(f"COPY {contracts_folder} /app")
dockerfile.append(f"COPY {contracts_folder} /app/{contracts_folder}")
dockerfile.append("RUN ape compile")

bot_src = f"{bot_path.parent}/{bot_path.name}" if include_bot_dir else bot_path.name
Expand Down
Loading