Files
siege/Dockerfile
T
renovate 745f3c1441
Docker Build and Push / lint (pull_request) Successful in 10s
Docker Build and Push / lint (push) Successful in 10s
Docker Build and Push / build (pull_request) Successful in 21s
Docker Build and Push / build (push) Successful in 21s
Docker Build and Push / test (pull_request) Successful in 12s
Docker Build and Push / test (push) Successful in 16s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Successful in 20s
Pin dependencies
2026-06-09 14:07:25 +00:00

20 lines
615 B
Docker

FROM ubuntu:18.04@sha256:152dc042452c496007f07ca9127571cb9c29697f42acbfad72324b2bb2e43c98
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008,SC3009
RUN apt-get -qq update && \
apt-get --no-install-recommends -qqy install siege && \
apt-get -qqy autoremove --purge && \
apt-get -qq clean && \
rm -rf /usr/share/doc/* \
/var/cache/* \
/var/lib/apt/lists/* \
/usr/src/* \
/var/log/apt \
/var/log/dpkg.log \
/tmp/*
ENTRYPOINT [ "/usr/bin/siege" ]
CMD [ "--help" ]