File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ ARG DEBIAN_FRONTEND=noninteractive
44# WARNING: DON'T PUT A SPACE AFTER ANY BACKSLASH OR APT WILL BREAK
55# One -q produces output suitable for logging (mostly hides
66# progress indicators)
7- RUN apt-get -yqq update && \
8- apt-get -yqq install \
7+ RUN apt-get install \
8+ --no- install-recommends \
99 -o Dpkg::Options::="--force-confdef" \
1010 -o Dpkg::Options::="--force-confold" \
11+ -qqUy \
1112 cloc \
1213 curl \
1314 gcc \
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ set -eo pipefail -u
44
55chown -LR " $USER_ID " /var/run
66# Drop permissions of user to match those of the host system
7- gosu " $USER_ID " python3 " ${FWROOT} /toolset/run-tests.py" " $@ "
7+ exec gosu " $USER_ID " python3 " ${FWROOT} /toolset/run-tests.py" " $@ "
Original file line number Diff line number Diff line change @@ -4,10 +4,7 @@ FROM ubuntu:24.04
44COPY concurrency.sh pipeline.lua pipeline.sh query.sh ./
55
66ARG DEBIAN_FRONTEND=noninteractive
7- RUN apt-get -yqq update >/dev/null && \
8- apt-get -yqq install >/dev/null \
9- curl \
10- wrk && \
7+ RUN apt-get install --no-install-recommends -qqUy curl wrk > /dev/null && \
118 chmod 777 concurrency.sh pipeline.sh query.sh
129
1310# Environment vars required by the wrk scripts with nonsense defaults
You can’t perform that action at this time.
0 commit comments