Skip to content

Commit

Permalink
add kagent service server
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Sep 24, 2024
1 parent 60b5004 commit a82f2b6
Show file tree
Hide file tree
Showing 15 changed files with 2,065 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile.aarch64-unknown-linux-musl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ghcr.io/kentik/cross:aarch64-unknown-linux-musl

ARG LIBPCAP=libpcap-1.10.0

RUN apt-get update && apt-get install -y bison flex capnproto
RUN apt-get update && apt-get install -y bison flex capnproto protobuf-compiler

RUN mkdir /work && cd /work
RUN curl -L -O https://www.tcpdump.org/release/$LIBPCAP.tar.gz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ghcr.io/kentik/cross:armv7-unknown-linux-musleabihf

ARG LIBPCAP=libpcap-1.10.0

RUN apt-get update && apt-get install -y bison flex capnproto
RUN apt-get update && apt-get install -y bison flex capnproto protobuf-compiler

RUN mkdir /work && cd /work
RUN curl -L -O https://www.tcpdump.org/release/$LIBPCAP.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile.x86_64-unknown-freebsd
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ FROM ghcr.io/cross-rs/x86_64-unknown-freebsd:0.2.4

RUN curl --retry 3 -sSfL http://ftp.freebsd.org/pub/FreeBSD/releases/amd64/14.1-RELEASE/base.txz | tar xJvf - -C /usr/local/x86_64-unknown-freebsd12/lib --strip-components 3 ./usr/lib/libkvm.a ./usr/lib/libdevstat.a ./usr/lib/libmemstat.a

RUN apt-get update && apt-get install -y capnproto
RUN apt-get update && apt-get install -y capnproto protobuf-compiler
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile.x86_64-unknown-linux-musl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ghcr.io/kentik/cross:x86_64-unknown-linux-musl

ARG LIBPCAP=libpcap-1.10.0

RUN apt-get update && apt-get install -y bison flex capnproto
RUN apt-get update && apt-get install -y bison flex capnproto protobuf-compiler

RUN mkdir /work && cd /work
RUN curl -L -O https://www.tcpdump.org/release/$LIBPCAP.tar.gz
Expand Down
Loading

0 comments on commit a82f2b6

Please sign in to comment.