fix: install apt-utils for debian docker

This commit is contained in:
Amin Yahyaabadi 2021-09-18 12:32:52 -05:00
parent b08e31fb37
commit f753f1f41c
2 changed files with 2 additions and 2 deletions

View File

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