Update main.Dockerfile

fix for TQDM not found
This commit is contained in:
PGTBoos 2023-03-19 23:48:09 +01:00 committed by GitHub
parent da5303c1ea
commit 5d79c5b985
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
ARG UBUNTU_VERSION=22.04 ARG UBUNTU_VERSION=22.04
FROM ubuntu:$UBUNTU_VERSION as build FROM ubuntu:$UBUNTU_VERSION as build
RUN pip install tqdm
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y build-essential apt-get install -y build-essential
@ -15,4 +15,4 @@ FROM ubuntu:$UBUNTU_VERSION as runtime
COPY --from=build /app/main /main COPY --from=build /app/main /main
ENTRYPOINT [ "/main" ] ENTRYPOINT [ "/main" ]