mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
17 lines
255 B
Docker
17 lines
255 B
Docker
# ab (apache benchmark)
|
|
# in a container
|
|
#
|
|
# docker run --rm -it \
|
|
# jess/ab
|
|
#
|
|
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
apache2-ssl \
|
|
apache2-utils \
|
|
ca-certificates \
|
|
htop
|
|
|
|
ENTRYPOINT [ "ab" ]
|