File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,17 @@ FROM debian:bullseye-slim
33LABEL maintainer="Franck FERMAN <contact@franckferman.fr>" \
44 description="Unleash Metadata Intelligence with MetaDetective." \
55 metadetective_version="2.0.0" \
6- docker_image_version="1.0.2 "
6+ docker_image_version="1.0.3 "
77
88RUN apt-get update && \
9- apt-get install -y \
10- python3 \
11- python3-pip \
12- libimage-exiftool-perl \
13- --no-install-recommends && \
9+ apt-get install -y --no-install-recommends \
10+ ca-certificates \
11+ python3 \
12+ python3-pip \
13+ libimage-exiftool-perl && \
1414 rm -rf /var/lib/apt/lists/*
1515
16- RUN pip3 install MetaDetective && \
17- rm -rf ~/.cache/pip
18-
19- ENV PATH="/root/.local/bin:${PATH}"
16+ RUN python3 -m pip install --no-cache-dir "MetaDetective==2.0.0" && \
17+ command -v metadetective
2018
2119CMD ["tail" , "-f" , "/dev/null" ]
You can’t perform that action at this time.
0 commit comments