dockerfiles/ab/Dockerfile
Marc Cornellà 7ac4881609 Use `apk --no-cache' on alpine images (#144)
This enables us to remove the following patterns that required
a `rm -rf /var/cache/apk`:

- `apk update`
- `apk add --update`
- `apk add --update-cache`

Supported since alpine 3.3.
2016-06-06 03:40:20 +00:00

17 lines
249 B
Docker

# ab (apache benchmark)
# in a container
#
# docker run --rm -it \
# jess/ab
#
FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk --no-cache add \
apache2-ssl \
apache2-utils \
ca-certificates \
htop
ENTRYPOINT [ "ab" ]