Switch from pyVoIP to Linphone CLI - actually works! (v3.0.0)

This commit is contained in:
2026-02-08 15:57:21 +01:00
parent 8e79a3a576
commit f35a83761c
4 changed files with 121 additions and 119 deletions

View File

@@ -1,14 +1,12 @@
ARG BUILD_FROM
FROM $BUILD_FROM
# Install system dependencies
# Install system dependencies including Linphone
RUN apk add --no-cache \
python3 \
py3-pip \
ffmpeg \
gcc \
musl-dev \
python3-dev \
linphone \
git
# Set working directory
@@ -19,7 +17,7 @@ COPY requirements.txt .
RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt
# Remove git after installation to reduce image size
RUN apk del git gcc musl-dev python3-dev
RUN apk del git
# Copy application files
COPY run.sh .