From 4a665149c1dda909fd6760ec1dd2d8bd89c10615 Mon Sep 17 00:00:00 2001 From: Franck FERMAN Date: Wed, 25 Oct 2023 23:27:42 +0200 Subject: [PATCH] Dockerfile update. --- docker/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 06fbb75..e458a97 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM debian:bullseye-slim LABEL maintainer="Franck FERMAN " \ description="Unleash Metadata Intelligence with MetaDetective. Your Assistant Beyond Metagoofil." \ metadetective_version="1.0.8" \ - docker_image_version="1.0.1" + docker_image_version="1.0.2" RUN apt-get update && \ apt-get install -y \ @@ -13,7 +13,8 @@ RUN apt-get update && \ --no-install-recommends && \ rm -rf /var/lib/apt/lists/* -RUN pip3 install MetaDetective +RUN pip3 install MetaDetective && \ + rm -rf ~/.cache/pip ENV PATH="/root/.local/bin:${PATH}"