Files
troubleshoot/deploy/Dockerfile.troubleshoot
2019-08-07 21:23:12 +00:00

14 lines
267 B
Docker

FROM debian:buster
WORKDIR /
RUN apt-get -qq update \
&& apt-get -qq -y install \
ca-certificates
COPY support-bundle /troubleshoot/support-bundle
COPY collector /troubleshoot/collector
COPY preflight /troubleshoot/preflight
ENV PATH="/troubleshoot:${PATH}"