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

Make make target more explicit #182

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ docker-compose:
devel: athena-monitor athena-processor docker-build docker-compose

.PHONY: common-docker monitor processor
docker-build: athena-monitor docker-build-monitor athena-processor docker-build-processor debug-container
docker-build: athena-monitor docker-build-monitor athena-processor docker-build-processor docker-build-debug-container

.PHONY: docker-build-monitor docker-build-processor
docker-build-monitor docker-build-processor: docker-build-%:
Expand All @@ -33,8 +33,8 @@ docker-build-monitor docker-build-processor: docker-build-%:
--build-arg OS=linux \
.

.PHONY: debug-container
debug-container:
.PHONY: docker-build-debug-container
docker-build-debug-container:
docker build \
--tag debug-container \
--file Dockerfile-debug \
Expand Down
Loading