Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(makefile): remove duplicate command #1241

Merged
merged 2 commits into from Sep 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 0 additions & 16 deletions Makefile
Expand Up @@ -208,19 +208,3 @@ down: $(DOCKER_COMPOSE_FILES)
$(addprefix -f ,$(DOCKER_COMPOSE_FILES)) \
-p $(STACK) \
down

shuttle-%:
$(DOCKER_BUILD) \
--target $(@)$(DEV_SUFFIX) \
--build-arg folder=$(*) \
--build-arg crate=$(@) \
--build-arg prepare_args=$(PREPARE_ARGS) \
--build-arg PROD=$(PROD) \
--build-arg RUSTUP_TOOLCHAIN=$(RUSTUP_TOOLCHAIN) \
--build-arg CARGO_PROFILE=$(CARGO_PROFILE) \
--tag $(CONTAINER_REGISTRY)/$(*):$(COMMIT_SHA) \
--tag $(CONTAINER_REGISTRY)/$(*):$(TAG) \
--tag $(CONTAINER_REGISTRY)/$(*):latest \
$(BUILDX_FLAGS) \
-f Containerfile \
.