Skip to content

Commit

Permalink
[DRAFT] Add golang to ubuntu dockerfiles
Browse files Browse the repository at this point in the history
In order to support properly testing ongoing work to incorporate `iovisor/gobpf` code into this repo (#4449), we need to be able to test the bindings in this repository. So try adding `golang-go` to the ubuntu container.

Note that we can't use `actions/setup-go@v2` GH action used by `gobpf`'s CI as we're running tests within containers on the CI, not directly on the CI.

Marking [DRAFT] for now as I haven't touched the dockerfiles in a while and probably forgot / am misunderstanding something.
  • Loading branch information
davemarchevsky authored Feb 14, 2023
1 parent 47502c2 commit 5a240f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/build/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ RUN apt-get update && apt-get install -y \
libtinfo-dev \
iperf \
netperf \
xz-utils && \
xz-utils \
golang-go && \
apt-get -y clean

RUN pip3 install pyroute2==0.5.18 netaddr==0.8.0 dnslib==0.9.14 cachetools==3.1.1
Expand Down

0 comments on commit 5a240f4

Please sign in to comment.