blob: 3ed1528c8a4553bcfa6f7a78f110d1a2beb07ca0 [file] [log] [blame]
Matus Fabianc4b4cd52024-12-08 15:13:44 +01001ARG UBUNTU_VERSION=22.04
2
3FROM ubuntu:${UBUNTU_VERSION}
4
5RUN apt-get update \
6 && apt-get install -y apache2-utils \
7 && rm -rf /var/lib/apt/lists/*
8
9ENTRYPOINT ["ab"]