-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving HotRod Containerized to Hotrod folder
and some minor adjustments on Dockerfile Signed-off-by: Guilherme Baufaker Rêgo <[email protected]>
- Loading branch information
Guilherme Baufaker Rêgo
committed
Feb 14, 2018
1 parent
e4611f1
commit 0398563
Showing
7 changed files
with
34 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM scratch | ||
EXPOSE 8080 | ||
COPY . / | ||
CMD ["./collector-linux", "all"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cd $GOPATH/src/github.com/jaegertracing/jaeger | ||
make install | ||
cd $GOPATH/src/github.com/jaegertracing/jaeger/examples/hotrod | ||
CGO_ENABLED=0 GOOS=linux installsuffix=cgo go build -o collector-linux main.go | ||
docker build -t jaegertracing/hotrod -f Dockerfile . |