Files
siege/Dockerfile
T
cloudix_mcp_server f3732192ba
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / lint (pull_request) Successful in 5s
Docker Build and Push / build (push) Successful in 1m3s
Docker Build and Push / build (pull_request) Successful in 1m3s
Docker Build and Push / test (push) Successful in 10s
Docker Build and Push / test (pull_request) Successful in 15s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Successful in 21s
fix: add hadolint ignores DL3008,SC3009
2026-06-08 20:26:42 -04:00

20 lines
543 B
Docker

FROM ubuntu:18.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" ]