From bc2d859f5e2cbcd733ae3db53afb4c9dee76c192 Mon Sep 17 00:00:00 2001 From: Ivan Yourshaw <39739503+iyourshaw@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:29:19 -0700 Subject: [PATCH] Remove unused dependencies from all dockerfiles --- Dockerfile.dev | 10 +++++++--- Dockerfile.standalone | 10 +++++++--- Dockerfile.testing | 10 +++++++--- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 9954733c..26a46c20 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -10,12 +10,16 @@ RUN apk add --upgrade --no-cache --virtual .build-deps \ g++ \ make \ bash \ - automake \ - libtool \ - autoconf \ librdkafka \ librdkafka-dev +# Dependencies that are not needed if asn1c is not installed in the build container: +# libtool +# automake +# autoconf +# bison +# flex + # Install pugixml ADD ./pugixml /asn1_codec/pugixml RUN cd /asn1_codec/pugixml && mkdir -p build && cd build && cmake .. && make && make install diff --git a/Dockerfile.standalone b/Dockerfile.standalone index a7ecb73c..14050678 100644 --- a/Dockerfile.standalone +++ b/Dockerfile.standalone @@ -9,12 +9,16 @@ RUN apk add --upgrade --no-cache --virtual .build-deps \ g++ \ make \ bash \ - automake \ - libtool \ - autoconf \ librdkafka \ librdkafka-dev +# Dependencies that are not needed if asn1c is not installed in the build container: +# libtool +# automake +# autoconf +# bison +# flex + # Install pugixml ADD ./pugixml /asn1_codec/pugixml RUN cd /asn1_codec/pugixml && mkdir -p build && cd build && cmake .. && make && make install diff --git a/Dockerfile.testing b/Dockerfile.testing index 785d9810..9a170bcb 100644 --- a/Dockerfile.testing +++ b/Dockerfile.testing @@ -10,12 +10,16 @@ RUN apk add --upgrade --no-cache --virtual .build-deps \ g++ \ make \ bash \ - automake \ - libtool \ - autoconf \ librdkafka \ librdkafka-dev +# Dependencies that are not needed if asn1c is not installed in the build container: +# libtool +# automake +# autoconf +# bison +# flex + # Install pugixml ADD ./pugixml /asn1_codec/pugixml RUN cd /asn1_codec/pugixml && mkdir -p build && cd build && cmake .. && make && make install