mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-26 08:32:53 +00:00
26 lines
989 B
Docker
26 lines
989 B
Docker
FROM linuxkit/alpine:3683c9a66cd4da40bd7d6c7da599b2dcd738b559 AS mirror
|
|
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
|
RUN apk add --no-cache --initdb -p /out \
|
|
tini
|
|
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
|
|
|
FROM linuxkit/alpine:3683c9a66cd4da40bd7d6c7da599b2dcd738b559 AS build
|
|
|
|
RUN apk add --no-cache go musl-dev git make
|
|
ENV GOPATH=/go PATH=$PATH:/go/bin
|
|
|
|
ENV VIRTSOCK_COMMIT=f1e32d3189e0dbb81c0e752a4e214617487eb41f
|
|
RUN mkdir -p $GOPATH/src/github.com/linuxkit && \
|
|
cd $GOPATH/src/github.com/linuxkit && \
|
|
git clone https://github.com/linuxkit/virtsock.git
|
|
WORKDIR $GOPATH/src/github.com/linuxkit/virtsock
|
|
RUN git checkout $VIRTSOCK_COMMIT
|
|
# Don't use go-compile.sh quite yet as the virtsock package is not yet lint free
|
|
RUN make bin/sock_stress.linux && \
|
|
cp -a bin/sock_stress.linux /sock_stress
|
|
|
|
FROM scratch
|
|
COPY --from=mirror /out/ /
|
|
COPY --from=build sock_stress usr/bin/sock_stress
|
|
CMD ["/sbin/tini", "/usr/bin/sock_stress", "-s", "-v", "1"]
|