bc6820790e
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / lint (pull_request) Successful in 5s
Docker Build and Push / build (push) Successful in 48s
Docker Build and Push / build (pull_request) Successful in 49s
Docker Build and Push / test (pull_request) Successful in 14s
Docker Build and Push / test (push) Successful in 15s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Successful in 18s
20 lines
543 B
Docker
20 lines
543 B
Docker
FROM ubuntu:26.04
|
|
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" ] |