mirror of https://github.com/k3s-io/k3s
Browse Source
This appears to be fixing the CI testing in local testing. Signed-off-by: Dirk Müller <dirk@dmllr.de>pull/5429/head
Dirk Mueller
3 years ago
committed by
GitHub
3 changed files with 6 additions and 6 deletions
@ -1,6 +1,6 @@
|
||||
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 |
||||
FROM alpine:3.15 |
||||
ENV SONOBUOY_VERSION 0.56.4 |
||||
RUN apk add curl tar gzip |
||||
RUN curl -sfL https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VERSION}/sonobuoy_${SONOBUOY_VERSION}_linux_amd64.tar.gz | tar xvzf - -C /usr/bin |
||||
COPY run-test.sh /usr/bin |
||||
CMD ["/usr/bin/run-test.sh"] |
||||
|
Loading…
Reference in new issue