mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +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}"
|
|
|