mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 01:01:16 +00:00
Containerise the stress tests for virtio and Hyper-V sockets from https://github.com/rneugeba/virtsock See README.md for more details Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
12 lines
445 B
Docker
12 lines
445 B
Docker
FROM mobylinux/go-compile:3afebc59c5cde31024493c3f91e6102d584a30b9
|
|
|
|
ENV VIRTSOCK_COMMIT=6b4dec728264e07c41e108caebd6bc2b72559a5f
|
|
RUN mkdir -p $GOPATH/src/github.com/rneugeba && \
|
|
cd $GOPATH/src/github.com/rneugeba && \
|
|
git clone https://github.com/rneugeba/virtsock.git
|
|
WORKDIR $GOPATH/src/github.com/rneugeba/virtsock
|
|
RUN git checkout $VIRTSOCK_COMMIT
|
|
RUN make build/virtsock_stress.linux
|
|
|
|
ENTRYPOINT ["cat", "build/virtsock_stress.linux"]
|