Skip to content

Commit

Permalink
Remove unused dependencies from all dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
iyourshaw committed Nov 19, 2024
1 parent 7caddc2 commit bc2d859
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
10 changes: 7 additions & 3 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 7 additions & 3 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 7 additions & 3 deletions Dockerfile.testing
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bc2d859

Please sign in to comment.