From e891420368e5fd5118fa2f1d64c30a5f1d81a219 Mon Sep 17 00:00:00 2001 From: Simon Jenner Date: Mon, 24 Jul 2023 20:52:47 +0100 Subject: [PATCH] Fix pip install --- Dockerfile.client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.client b/Dockerfile.client index bde4013..76ab91c 100644 --- a/Dockerfile.client +++ b/Dockerfile.client @@ -7,7 +7,7 @@ RUN cargo build --bin ipmon --release FROM debian:bullseye-slim RUN apt update && apt -y install ca-certificates python3-pip && rm -rf /var/lib/apt/lists/* -RUN pip install apprise -y +RUN pip install apprise WORKDIR /app COPY --from=build /ipmon/target/release/ipmon ./ ENTRYPOINT ["/app/ipmon"]