Skip to content

Commit

Permalink
Merge branch 'release/0.10.0'
Browse files Browse the repository at this point in the history
# Conflicts:
#	pyproject.toml
  • Loading branch information
James Wood authored and James Wood committed Mar 14, 2024
2 parents 14abea0 + d7aa18d commit f5ee8b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "podaac-tig"
version = "0.10.0"
version = "0.10.0-rc.2"
description = "Tool for Image Generation (TIG)"
authors = ["podaac-tva <podaac-tva@jpl.nasa.gov>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion terraform/tig_ecr.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resource null_resource upload_ecr_image {
provisioner "local-exec" {
interpreter = ["/bin/bash", "-e", "-c"]
command = <<EOF
docker pull ${var.lambda_container_image_uri}
docker pull --platform=linux/arm/v7 ${var.lambda_container_image_uri}
docker tag ${var.lambda_container_image_uri} ${aws_ecr_repository.lambda-image-repo.repository_url}:${local.ecr_image_tag}
docker push ${aws_ecr_repository.lambda-image-repo.repository_url}:${local.ecr_image_tag}
EOF
Expand Down

0 comments on commit f5ee8b2

Please sign in to comment.