Skip to content

Commit

Permalink
add 'netbase' apt dependencie to all debian-based img in the final st…
Browse files Browse the repository at this point in the history
…age to solve 'icmp'
  • Loading branch information
lbellomo committed Sep 5, 2024
1 parent c7e0842 commit e7cc5e6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion priv/scripts/docker/erlang-debian-bookworm.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ RUN apt-get update && \
ca-certificates \
libodbc1 \
libssl3 \
libsctp1 && \
libsctp1 \
netbase && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion priv/scripts/docker/erlang-debian-bullseye.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ RUN apt-get update && \
ca-certificates \
libodbc1 \
libssl1.1 \
libsctp1 && \
libsctp1 \
netbase && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion priv/scripts/docker/erlang-debian-buster.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ RUN apt-get update && \
ca-certificates \
libodbc1 \
libssl1.1 \
libsctp1 && \
libsctp1 \
netbase && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion priv/scripts/docker/erlang-ubuntu-focal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ RUN apt-get update && \
ca-certificates \
libodbc1 \
libssl1.1 \
libsctp1 && \
libsctp1 \
netbase && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion priv/scripts/docker/erlang-ubuntu-jammy.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ RUN apt-get update && \
ca-certificates \
libodbc1 \
libssl3 \
libsctp1 && \
libsctp1 \
netbase && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
6 changes: 4 additions & 2 deletions priv/scripts/docker/erlang-ubuntu-noble.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ RUN if [ "${ARCH}" = "amd64" ]; then \
ca-certificates \
libodbc2 \
libssl3t \
libsctp1; \
libsctp1 \
netbase; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
elif [ "${ARCH}" = "arm64" ]; then \
Expand All @@ -53,7 +54,8 @@ RUN if [ "${ARCH}" = "amd64" ]; then \
ca-certificates \
libodbc2 \
libssl3t64 \
libsctp1; \
libsctp1 \
netbase; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
fi
Expand Down

0 comments on commit e7cc5e6

Please sign in to comment.