blob: 3ed1528c8a4553bcfa6f7a78f110d1a2beb07ca0 [file] [log] [blame]
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"]