mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-09-10 00:57:18 +00:00
13 lines
209 B
Docker
13 lines
209 B
Docker
FROM debian:buster
|
|
WORKDIR /
|
|
|
|
RUN apt-get -qq update \
|
|
&& apt-get -qq -y install \
|
|
ca-certificates
|
|
|
|
COPY preflight /preflight/preflight
|
|
COPY collector /preflight/collector
|
|
|
|
ENV PATH="/preflight:${PATH}"
|
|
|