From 4419d908a3410de29d4333aa6e1aa367c9e450ab Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 8 May 2024 15:02:11 +0200 Subject: [PATCH] fix build --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 992a2df..b6ba2ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,12 @@ FROM ubuntu:24.04 ENV DEBIAN_FRONTEND=noninteractive +COPY requirements.txt . + # hadolint ignore=DL3008,DL3028 RUN apt-get update \ - && apt-get -y remove python3 \ && apt-get -y --no-install-recommends install \ python3-full python3-pip \ - && pip install --no-cache-dir --break-system-packages -r ./requirements.txt \ + && pip install --no-cache-dir --break-system-packages -r requirements.txt \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*