We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54f3b5c commit f8b756aCopy full SHA for f8b756a
images/debian_bookworm/Dockerfile
@@ -66,7 +66,12 @@ RUN /v/bin/pip install -U pip
66
RUN /v/bin/pip install 'requests==2.30.0'
67
68
# install salt
69
-RUN python3 -m pip install --break-system-packages --no-cache salt
+ARG _BUILD_DEPS="gcc g++ libc6-dev python3-dev"
70
+RUN apt update && apt install -y $_BUILD_DEPS && \
71
+ python3 -m pip install --break-system-packages --no-cache salt && \
72
+ apt -y purge $_BUILD_DEPS && \
73
+ apt -y autoremove --purge && \
74
+ rm -rf /var/lib/apt/lists/*
75
76
ENV LANG fr_FR.ISO-8859-15
77
ENV LANGUAGE fr_FR
0 commit comments