Skip to content

Commit

Permalink
fix: missing commands
Browse files Browse the repository at this point in the history
  • Loading branch information
akafeng committed Jul 17, 2024
1 parent ec7a284 commit 5aa3445
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ RUN set -eux \
apt-transport-https \
curl \
lsb-release \
tini \
&& rm -rf /var/lib/apt/lists/* /var/log/*
RUN set -eux \
&& curl -s https://deb.frrouting.org/frr/keys.gpg | tee /usr/share/keyrings/frrouting.gpg > /dev/null \
&& echo "deb [signed-by=/usr/share/keyrings/frrouting.gpg] https://deb.frrouting.org/frr/ $(lsb_release -s -c) frr-stable" | tee -a /etc/apt/sources.list.d/frr.list \
&& apt-get update -qyy \
&& apt-get install -qyy --no-install-recommends --no-install-suggests \
tini \
frr \
frr-pythontools \
iputils-ping \
traceroute \
&& rm -rf /var/lib/apt/lists/* /var/log/*

RUN set -eux \
Expand Down

0 comments on commit 5aa3445

Please sign in to comment.