Skip to content

Commit

Permalink
fix: fix the func insert_build_env_file
Browse files Browse the repository at this point in the history
  • Loading branch information
floralatin committed Nov 4, 2022
1 parent f3a53f0 commit 742f43b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalizer/docker/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def insert_build_env(self, build_env: Dict):
def insert_build_env_file(self, build_env_file: str):
build_env_str = ''
build_env_str += dedent(
f' --mount=type=secret,id={build_env_file} . run/secrets/{build_env_file} '
f' --mount=type=secret,id={build_env_file} . /run/secrets/{build_env_file} '
)
build_env_str += ' && '

Expand Down

0 comments on commit 742f43b

Please sign in to comment.