From 775d6829e74644b9bca57e406a713d28654ed9c3 Mon Sep 17 00:00:00 2001 From: knoflook Date: Wed, 20 Apr 2022 14:57:28 +0200 Subject: [PATCH] move apk to apt-get --- Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0047ee..798d340 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,14 +17,11 @@ RUN pip install wheel cppy # Install dependencies into the virtual environment with Pipenv RUN pipenv install --deploy --verbose FROM python:3.8-slim -RUN apk add --no-cache \ +RUN apt-get install --no-install-recommends -y \ cloud-utils \ - libjpeg \ - libpq \ - libstdc++ \ - libvirt-client \ + libvirt-clients \ openssh-client \ - virt-install + virtinst COPY . /app/code/ WORKDIR /app/code COPY --from=build /app/venv /app/venv