Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion infra/base-images/base-builder/indexer/manifest_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import urllib.request

import manifest_constants

import pathlib

SRC_DIR = manifest_constants.SRC_DIR
Expand Down Expand Up @@ -433,7 +434,7 @@ def save_build(

with tempfile.NamedTemporaryFile() as tmp:
mode = "w:gz" if archive_path.suffix.endswith("gz") else "w"
with tarfile.open(tmp.name, mode) as tar:
with tarfile.open(tmp.name, mode, dereference=True) as tar:

def _save_dir(
path: pathlib.PurePath,
Expand Down
Loading