Skip to content

Commit 268bf21

Browse files
authored
Update Dockerfile
1 parent 5d6ab11 commit 268bf21

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

docker/Dockerfile

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,17 @@ FROM debian:bullseye-slim
33
LABEL 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

88
RUN 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

2119
CMD ["tail", "-f", "/dev/null"]

0 commit comments

Comments
 (0)