We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63dc9ca commit 403ed6dCopy full SHA for 403ed6d
config/docker/base/debian.jinja2
@@ -10,6 +10,11 @@ FROM mirror.gcr.io/debian:trixie
10
MAINTAINER "KernelCI TSC" <kernelci-tsc@groups.io>
11
ENV DEBIAN_FRONTEND=noninteractive
12
13
+# Exclude doc and man files to reduce image size
14
+RUN echo 'path-exclude=/usr/share/doc/*' > /etc/dpkg/dpkg.cfg.d/excludes && \
15
+ echo 'path-exclude=/usr/share/man/*' >> /etc/dpkg/dpkg.cfg.d/excludes && \
16
+ echo 'path-exclude=/usr/share/info/*' >> /etc/dpkg/dpkg.cfg.d/excludes
17
+
18
{%- block multistage %}{% endblock %}
19
20
# Docker for jenkins really needs procps otherwise the jenkins side fails
0 commit comments