mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
9bd101c120
* validatecluster fixes Signed-off-by: Derek Nola <derek.nola@suse.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"]
|