Skip to content

Commit

Permalink
[COST-5214] pass build-arg to docker build command (#5196)
Browse files Browse the repository at this point in the history
  • Loading branch information
samdoran committed Jul 1, 2024
1 parent a42cf32 commit abd4261
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,9 @@ _koku-wait:
done

docker-build:
$(DOCKER_COMPOSE) build koku-base
# TARGETARCH: https://github.com/containers/podman/issues/23046 is resolved.
$(DOCKER_COMPOSE) build --build-arg TARGETARCH=$(shell uname -m | sed s/x86_64/amd64/) koku-base


docker-up: docker-build
$(DOCKER_COMPOSE) up -d --scale koku-worker=$(scale)
Expand Down

0 comments on commit abd4261

Please sign in to comment.