Skip to content

Commit

Permalink
fix docker clobbering
Browse files Browse the repository at this point in the history
  • Loading branch information
rzlim08 committed Aug 12, 2023
1 parent 3cd78ea commit 7a2b1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ localstack-test: image start-localstack wait-for-healthy deploy-localstack test
image:
source environment.test; \
docker buildx build --platform linux/amd64 --cache-from ghcr.io/chanzuckerberg/swipe:latest -t ghcr.io/chanzuckerberg/swipe:$$(cat version) .
docker tag ghcr.io/chanzuckerberg/swipe:$$(cat version) swipe:$$(cat version)

wait-for-healthy:
while true; do \
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ locals {
module "sfn" {
source = "./terraform/modules/swipe-sfn"
app_name = var.app_name
batch_job_docker_image = "ghcr.io/chanzuckerberg/swipe:${chomp(local.version)}"
batch_job_docker_image = "swipe:${chomp(local.version)}"
batch_spot_job_queue_arn = module.batch_queue.batch_spot_job_queue_arn
batch_on_demand_job_queue_arn = module.batch_queue.batch_on_demand_job_queue_arn
miniwdl_dir = var.miniwdl_dir
Expand Down

0 comments on commit 7a2b1df

Please sign in to comment.