mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 23:49:09 +00:00
* Update sonobuoy version
* Use upstream tag for Kubernetes version instead of replacement tag
Allows building against upstream alpha/beta/rc releases
* Use env variable for sonobuoy version
* Bump version for QA e2e tests
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
7 lines
266 B
Docker
7 lines
266 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update && \
|
|
apt-get install -y curl
|
|
RUN curl -sfL https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.19.0/sonobuoy_0.19.0_linux_amd64.tar.gz | tar xvzf - -C /usr/bin
|
|
COPY run-test.sh /usr/bin
|
|
CMD ["/usr/bin/run-test.sh"]
|