fix: Add ca-certificates to iox docker image

pull/24376/head
Marko Mikulicic 2021-03-15 17:15:05 +01:00 committed by kodiakhq[bot]
parent 4781317647
commit 58b01b4ad3
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ RUN \
FROM debian:buster-slim FROM debian:buster-slim
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y libssl1.1 libgcc1 libc6 --no-install-recommends \ && apt-get install -y libssl1.1 libgcc1 libc6 ca-certificates --no-install-recommends \
&& rm -rf /var/lib/{apt,dpkg,cache,log} && rm -rf /var/lib/{apt,dpkg,cache,log}
RUN groupadd -g 1500 rust \ RUN groupadd -g 1500 rust \

View File

@ -4,7 +4,7 @@
FROM debian:buster-slim FROM debian:buster-slim
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y libssl1.1 libgcc1 libc6 \ && apt-get install -y libssl1.1 libgcc1 libc6 ca-certificates --no-install-recommends \
&& rm -rf /var/lib/{apt,dpkg,cache,log} && rm -rf /var/lib/{apt,dpkg,cache,log}
RUN groupadd -g 1500 rust \ RUN groupadd -g 1500 rust \