From 5d79c5b985c67bd80b091ccfbbec30bddab88362 Mon Sep 17 00:00:00 2001 From: PGTBoos <23136027+PGTBoos@users.noreply.github.com> Date: Sun, 19 Mar 2023 23:48:09 +0100 Subject: [PATCH] Update main.Dockerfile fix for TQDM not found --- .devops/main.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devops/main.Dockerfile b/.devops/main.Dockerfile index cd575efa0..ef2256598 100644 --- a/.devops/main.Dockerfile +++ b/.devops/main.Dockerfile @@ -1,7 +1,7 @@ ARG UBUNTU_VERSION=22.04 FROM ubuntu:$UBUNTU_VERSION as build - +RUN pip install tqdm RUN apt-get update && \ apt-get install -y build-essential @@ -15,4 +15,4 @@ FROM ubuntu:$UBUNTU_VERSION as runtime COPY --from=build /app/main /main -ENTRYPOINT [ "/main" ] \ No newline at end of file +ENTRYPOINT [ "/main" ]