From eabede1db538429875196354c5c4a1c4c67efe2d Mon Sep 17 00:00:00 2001 From: David <39565245+dmunozv04@users.noreply.github.com> Date: Tue, 29 Mar 2022 15:54:30 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c79342..3f362c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ENV PATH="/opt/venv/bin:$PATH" PIP_NO_CACHE_DIR=off COPY requirements.txt . -RUN apk add gcc musl-dev build-base linux-headers libffi-dev rust cargo openssl-dev git && \ - pip install setuptools-rust && \ +RUN apk add gcc musl-dev build-base linux-headers libffi-dev rust cargo openssl-dev git avahi && \ + pip install --upgrade pip setuptools-rust wheel && \ pip install -r requirements.txt && \ apk del gcc musl-dev build-base linux-headers libffi-dev rust cargo openssl-dev git && \ rm -rf /root/.cache /root/.cargo