Skip to content

Commit

Permalink
fixup! Add Debian archive date when building image
Browse files Browse the repository at this point in the history
  • Loading branch information
apyrgio committed Feb 6, 2025
1 parent cbdd7d7 commit 81905dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/common/build-image.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def main():
if args.debian_archive_date:
print(f"Using Debian archive snapshot date '{args.debian_archive_date}'")
build_args = ["--build-arg", f"DEBIAN_ARCHIVE_DATE={args.debian_archive_date}"]
image_name_tagged = "f{args.debian_archive_date}-{image_name_tagged}"
image_name_tagged = f"{args.debian_archive_date}-{image_name_tagged}"

print(f"Will tag the container image as '{image_name_tagged}'")
with open(image_id_path, "w") as f:
Expand Down

0 comments on commit 81905dc

Please sign in to comment.