aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/docker/Dockerfile.ab
diff options
context:
space:
mode:
authorMatus Fabian <matfabia@cisco.com>2024-12-08 15:13:44 +0100
committerFlorin Coras <florin.coras@gmail.com>2024-12-10 05:06:06 +0000
commitc4b4cd5e77cc5f3305c90eecf802c601392b7975 (patch)
treed07443483328c76b5b3fcaf0e1e04cf838cbb8fb /extras/hs-test/docker/Dockerfile.ab
parent8b2a67c8f3977291fbafca37a435b5cd1ef4c214 (diff)
hs-test: arm support
CPU arch dependencies cleanup. Everything works fine apart from redis-benchmark test. Type: test Change-Id: I4a1e7d3bce994f6ea0681e06955ef9c621468642 Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'extras/hs-test/docker/Dockerfile.ab')
-rw-r--r--extras/hs-test/docker/Dockerfile.ab9
1 files changed, 9 insertions, 0 deletions
diff --git a/extras/hs-test/docker/Dockerfile.ab b/extras/hs-test/docker/Dockerfile.ab
new file mode 100644
index 00000000000..3ed1528c8a4
--- /dev/null
+++ b/extras/hs-test/docker/Dockerfile.ab
@@ -0,0 +1,9 @@
+ARG UBUNTU_VERSION=22.04
+
+FROM ubuntu:${UBUNTU_VERSION}
+
+RUN apt-get update \
+ && apt-get install -y apache2-utils \
+ && rm -rf /var/lib/apt/lists/*
+
+ENTRYPOINT ["ab"]