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

dedup examples dockerfile #132

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
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
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ publish:
test:
./gradlew test

.PHONY: docker-example
docker-example: build
cp agent/build/libs/pyroscope.jar examples/base
docker-compose -f examples/base/docker-compose.yml build
docker-compose -f examples/base/docker-compose.yml up
.PHONY: docker-example-base
docker-example-base: build
cp agent/build/libs/pyroscope.jar examples
docker-compose -f examples/docker-compose-base.yml build
docker-compose -f examples/docker-compose-base.yml up

.PHONY: docker-example
.PHONY: docker-example-expt
docker-example-expt: build
cp agent/build/libs/pyroscope.jar examples/expt
docker-compose -f examples/expt/docker-compose.yml build
docker-compose -f examples/expt/docker-compose.yml up
cp agent/build/libs/pyroscope.jar examples
docker-compose -f examples/docker-compose-expt.yml build
docker-compose -f examples/docker-compose-expt.yml up
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 0 additions & 13 deletions examples/expt/Dockerfile

This file was deleted.

Loading