mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
14 lines
270 B
Docker
14 lines
270 B
Docker
FROM debian:bookworm
|
|
WORKDIR /
|
|
|
|
RUN apt-get -qq update \
|
|
&& apt-get -qq -y install \
|
|
ca-certificates kmod
|
|
|
|
COPY support-bundle /troubleshoot/support-bundle
|
|
COPY preflight /troubleshoot/preflight
|
|
COPY collect /troubleshoot/collect
|
|
|
|
ENV PATH="/troubleshoot:${PATH}"
|
|
|