Skip to content

Commit

Permalink
fix: dev: Workaround nettools version changing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dallinb committed Sep 15, 2024
1 parent 6f90aaf commit f696c87
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/resources/sut/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ FROM debian:11

COPY requirements.txt /tmp

# hadolint ignore=DL3008
RUN apt-get clean \
&& apt-get update \
&& apt-get install --no-install-recommends -y \
iproute2=5.10.0-4 \
iputils-ping=3:20210202-1 \
net-tools=1.60+git20181103.0eebece-1 \
iproute2 \
iputils-ping \
net-tools \
ntp=1:4.2.8p15+dfsg-1 \
python3-pip=20.3.4-4+deb11u1 \
procps=2:3.3.17-5 \
sudo=1.9.5p2-3+deb11u1 \
python3-pip \
procps \
sudo \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& chmod 544 /etc/ntp.conf \
Expand Down

0 comments on commit f696c87

Please sign in to comment.