mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-02-14 18:29:53 +00:00
13 lines
228 B
Docker
13 lines
228 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 preflight /troubleshoot/preflight
|
|
|
|
ENV PATH="/troubleshoot:${PATH}"
|
|
|