Skip to content

Commit

Permalink
Add openjdk:11-jdk-slim docker support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreen27 committed Feb 8, 2021
1 parent c7e3033 commit 1b4c869
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions intezer_analyze_gh_community.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
if (os.name == "Posix") and (("Linux") in os.uname()):
sys.path.append('/usr/lib/python2.7/dist-packages')
sys.path.append('/usr/local/lib/python2.7/dist-packages')
elif os.name == "java":
sys.path.append('/usr/lib/python2.7/dist-packages')
sys.path.append('/usr/local/lib/python2.7/dist-packages')
sys.path.append('/usr/local/lib/python2.7/site-packages')
elif ("Darwin") in os.uname():
sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages')
sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.7/lib/site-python')
Expand Down

0 comments on commit 1b4c869

Please sign in to comment.