Skip to content

Commit

Permalink
Merge pull request #12 from demisto/runner-memory
Browse files Browse the repository at this point in the history
Reduce memory consumption
  • Loading branch information
amshamah419 authored Oct 7, 2024
2 parents 088358c + e7adc95 commit cba4c25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/full_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
continue-on-error: true

- name: Print completion message
run: echo "Docker repository update complete."
run: echo "Docker repository update complete."
3 changes: 3 additions & 0 deletions update-docker-repo-info.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,9 @@ def process_image(image_name, force):
print("Stderr: {}".format(e.stderr))
os.remove(temp_file.name)
raise
finally:
print(f"Removing Docker image from local runner: {full_name}")
subprocess.call(["docker", "rmi", full_name])


def process_org(org_name, force):
Expand Down

0 comments on commit cba4c25

Please sign in to comment.