From 3433f0698a01ce89d99e1bc104072576b1f9c2cf Mon Sep 17 00:00:00 2001 From: Stefan Darius Date: Tue, 12 Nov 2024 15:05:14 +0200 Subject: [PATCH] Use pip to install SIPssert in Docker image (#31) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 83313e6..b74ea27 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ RUN apt update && apt install -y git WORKDIR /usr/src RUN git clone https://github.com/OpenSIPS/SIPssert.git &&\ cd SIPssert &&\ - python3 setup.py install + pip install . FROM python:3.12-slim-bookworm AS sipssert LABEL maintainer="darius.stefan@opensips.org"