From 6c72c2f17ca09e424977fbf924453e83b8c3709b Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 18 Sep 2021 12:15:56 -0500 Subject: [PATCH] fix: install wget for dockerfile --- README.md | 1 + building/docker/debian.dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 415ef304..730c17c1 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,7 @@ FROM debian:bullseye # add setup_cpp WORKDIR "/" +RUN apt-get update -qq && apt-get install -y --no-install-recommends wget RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux" RUN chmod +x ./setup_cpp_linux diff --git a/building/docker/debian.dockerfile b/building/docker/debian.dockerfile index 131e7311..6fc37a29 100644 --- a/building/docker/debian.dockerfile +++ b/building/docker/debian.dockerfile @@ -3,6 +3,7 @@ FROM debian:bullseye # add setup_cpp WORKDIR "/" +RUN apt-get update -qq && apt-get install -y --no-install-recommends wget RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux" RUN chmod +x ./setup_cpp_linux