k3s/e2e/Dockerfile
Darren Shepherd d6c5f6b995 Add e2e tests
2019-02-28 10:31:59 -07:00

7 lines
260 B
Docker

FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y curl
RUN curl -sfL https://github.com/heptio/sonobuoy/releases/download/v0.13.0/sonobuoy_0.13.0_linux_amd64.tar.gz | tar xvzf - -C /usr/bin
COPY run-test.sh /usr/bin
CMD ["/usr/bin/run-test.sh"]