-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to ubuntu eaon for bpftrace 0.9.2
- Loading branch information
Showing
7 changed files
with
19 additions
and
145 deletions.
There are no files selected for viewing
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 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,18 @@ | ||
FROM golang:1.11.4-stretch as gobuilder | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y make bash git | ||
|
||
ADD . /go/src/github.com/iovisor/kubectl-trace | ||
WORKDIR /go/src/github.com/iovisor/kubectl-trace | ||
|
||
RUN make _output/bin/trace-runner | ||
|
||
FROM ubuntu:19.10 | ||
|
||
RUN apt-get update && apt-get install -y bpftrace && \ | ||
rm -rf /var/lib/apt/lists/* && apt-get clean | ||
|
||
COPY --from=gobuilder /go/src/github.com/iovisor/kubectl-trace/_output/bin/trace-runner /bin/trace-runner | ||
|
||
ENTRYPOINT ["/bin/trace-runner"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.