Sipp compiled with pyjwt to test stir and shaken process
2.1K
Dockerfile here:
# Build
# docker build -t allomediadocker/sipp:3.7.1 .
FROM alpine:3.13
LABEL maintainer="Hubert Mickaƫl <[email protected]>"
RUN apk add --no-cache \
binutils \
make \
cmake \
gcc \
g++ \
git \
ncurses-dev \
ncurses-static \
libpcap-dev \
gsl-dev \
gsl-static \
python3 \
py3-pip \
openssl-dev \
openssl-libs-static \
linux-headers \
lksctp-tools-dev \
lksctp-tools-static
ADD https://github.com/SIPp/sipp/releases/download/v3.7.1/sipp-3.7.1.tar.gz /
RUN tar -xzf /sipp-3.7.1.tar.gz
# Install python tiers libraries (used to test stir and shaken)
RUN pip install PyJWT
WORKDIR /sipp-3.7.1
RUN rm -f CMakeCache.txt \
&& cmake . -DBUILD_STATIC=1 -DUSE_PCAP=1 -DUSE_GSL=1 -DUSE_SSL=1 -DUSE_SCTP=1 \
&& make
RUN rm -rf /var/cache/apk/*
EXPOSE 5060
ENTRYPOINT ["/sipp-3.7.1/sipp"]
Content type
Image
Digest
sha256:c5a8f5e99ā¦
Size
84.8 MB
Last updated
about 1 year ago
docker pull allomediadocker/sipp