2019-12-10 21:47:25 +00:00
|
|
|
FROM golang:1.13.5-alpine3.10
|
2019-04-29 20:54:51 +00:00
|
|
|
|
2019-11-11 22:18:16 +00:00
|
|
|
RUN apk -U --no-cache add bash git gcc musl-dev docker curl jq coreutils python2
|
2019-10-15 18:19:41 +00:00
|
|
|
RUN SONOBUOY_VER=v0.16.2 && \
|
|
|
|
SONOBUOY_PKG=github.com/vmware-tanzu/sonobuoy && \
|
|
|
|
go get -d ${SONOBUOY_PKG} && \
|
|
|
|
cd /go/src/${SONOBUOY_PKG} && \
|
|
|
|
git checkout -b current ${SONOBUOY_VER} && \
|
|
|
|
go build -o /usr/local/bin/sonobuoy
|
2019-04-29 20:54:51 +00:00
|
|
|
RUN rm -rf /go/src /go/pkg
|
|
|
|
|
|
|
|
ARG DAPPER_HOST_ARCH
|
|
|
|
ENV ARCH $DAPPER_HOST_ARCH
|
|
|
|
|
|
|
|
RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/$( \
|
|
|
|
curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt \
|
|
|
|
)/bin/linux/${ARCH}/kubectl -o /usr/local/bin/kubectl && \
|
|
|
|
chmod a+x /usr/local/bin/kubectl
|
|
|
|
|
|
|
|
ENV DAPPER_RUN_ARGS --privileged --network host
|
2019-11-11 22:18:16 +00:00
|
|
|
ENV DAPPER_ENV REPO TAG DRONE_TAG IMAGE_NAME GCLOUD_AUTH
|
2019-04-29 20:54:51 +00:00
|
|
|
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
|
|
|
|
ENV DAPPER_OUTPUT ./dist
|
|
|
|
ENV DAPPER_DOCKER_SOCKET true
|
|
|
|
ENV HOME ${DAPPER_SOURCE}
|
|
|
|
WORKDIR ${DAPPER_SOURCE}
|
|
|
|
|
|
|
|
ENTRYPOINT ["./scripts/entry.sh"]
|
2019-05-02 19:04:45 +00:00
|
|
|
CMD ["sonobuoy-e2e-tests"]
|