Switch from pyVoIP to Linphone CLI - actually works! (v3.0.0)
This commit is contained in:
@@ -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 .
|
||||
|
||||
Reference in New Issue
Block a user