Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhw committed Feb 20, 2025
1 parent 7640996 commit 5ba554e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demisto_sdk/commands/common/docker_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def get_or_create_test_image(
if additional_requirements:
pip_requirements = pip_requirements + additional_requirements
identifier = hashlib.md5(
"\n".join(sorted(pip_requirements)).encode("utf-8")
"\n".join(sorted(set(pip_requirements))).encode("utf-8")
).hexdigest()

test_docker_image = (
Expand Down

0 comments on commit 5ba554e

Please sign in to comment.