Skip to content

Commit

Permalink
fix: black
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson2427 committed Oct 24, 2024
1 parent e2a349c commit 99f9221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion silverback/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ def build(generate, path):
dockerfile_content = DOCKERFILE_CONTENT
if (Path.cwd() / "requirements.txt").exists():
dockerfile_content += "COPY requirements.txt .\n"
dockerfile_content += "RUN pip install --upgrade pip && pip install -r requirements.txt\n"
dockerfile_content += (
"RUN pip install --upgrade pip && pip install -r requirements.txt\n"
)

if (Path.cwd() / "ape-config.yaml").exists():
dockerfile_content += "COPY ape-config.yaml .\n"
Expand Down

0 comments on commit 99f9221

Please sign in to comment.