fix: install ca-certificates for the docker

This commit is contained in:
Amin Yahyaabadi 2021-09-18 12:35:33 -05:00
parent f753f1f41c
commit 7f42ab35bf
2 changed files with 4 additions and 2 deletions

View File

@ -138,7 +138,8 @@ FROM debian:bullseye
# add setup_cpp
WORKDIR "/"
RUN apt-get update -qq && apt-get install -y --no-install-recommends apt-utils wget
RUN apt-get update -qq
RUN apt-get install -y --no-install-recommends ca-certificates apt-utils wget
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
RUN chmod +x ./setup_cpp_linux

View File

@ -3,7 +3,8 @@ FROM debian:bullseye
# add setup_cpp
WORKDIR "/"
RUN apt-get update -qq && apt-get install -y --no-install-recommends apt-utils wget
RUN apt-get update -qq
RUN apt-get install -y --no-install-recommends ca-certificates apt-utils wget
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
RUN chmod +x ./setup_cpp_linux