Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
FROM debian:bullseye-slim AS compile
ARG SIPP_VERSION="3.6.1"
ARG SIPP_VERSION="3.7.7"

WORKDIR /sipp
RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential cmake wget libssl-dev libpcap-dev libsctp-dev libncurses5-dev && \
apt-get install -y --no-install-recommends build-essential cmake wget libssl-dev libpcap-dev libsctp-dev libncurses5-dev libgsl-dev && \
wget --no-check-certificate "https://github.com/SIPp/sipp/releases/download/v$SIPP_VERSION/sipp-$SIPP_VERSION.tar.gz" && \
tar -xzf sipp-$SIPP_VERSION.tar.gz -C . && \
cd sipp-$SIPP_VERSION && \
./build.sh --full

FROM debian:bullseye-slim AS sipp

ARG SIPP_VERSION="3.6.1"
ARG SIPP_VERSION="3.7.7"


RUN apt-get update && apt-get install -y --no-install-recommends libncurses5 libncursesw6 libpcap0.8 libsctp1
RUN apt-get update && apt-get install -y --no-install-recommends libncurses5 libncursesw6 libpcap0.8 libsctp1 libgsl25

WORKDIR /sipp

Expand All @@ -23,4 +23,4 @@ COPY --from=compile /sipp/sipp-${SIPP_VERSION}/pcap /sipp/pcap/

EXPOSE 5060

ENTRYPOINT ["sipp"]
ENTRYPOINT ["sipp"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Docker container for SIPp

- Docker container for running [SIPp](http://sipp.sourceforge.net/index.html)
- Builds version 3.6.1 from [Github ](https://github.com/SIPp)
- Builds version 3.7.7 from [Github ](https://github.com/SIPp)
- [Github Repo](https://github.com/ctaloi/docker-sipp)
- [Docker Hub](https://hub.docker.com/r/ctaloi/sipp/)

Expand Down