Docker: Remove unnecessary dependencies

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-02-04 00:17:54 +01:00
parent 1c934d48d3
commit a660bc0471
3 changed files with 4 additions and 16 deletions

View file

@ -39,16 +39,10 @@ RUN apt-get update && apt-get upgrade && \
gpg-agent \
apt-utils \
make \
nano \
wget \
git \
mysql-client \
tzdata \
gconf-service \
libheif-examples \
darktable \
exiftool \
ffmpeg
gconf-service
# Install & configure TensorFlow for C
#
@ -120,15 +114,12 @@ RUN echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissin
# Install additional distribution packages
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
unzip \
nano \
wget \
ca-certificates \
tzdata \
libheif-examples \
darktable \
exiftool && \
exiftool \
ffmpeg && \
apt-get update && \
apt-get upgrade && \
apt-get dist-upgrade && \

View file

@ -22,9 +22,6 @@ RUN echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissin
# Install additional distribution packages
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
unzip \
nano \
wget \
ca-certificates \
tzdata \

View file

@ -27,7 +27,7 @@ services:
PHOTOPRISM_DEBUG: "false"
PHOTOPRISM_READONLY: "false"
PHOTOPRISM_PUBLIC: "false"
PHOTOPRISM_ADMIN_PASSWORD: "photoprism" #Also supports bcrypt hashes. Replace all "$" with "$$".
PHOTOPRISM_ADMIN_PASSWORD: "photoprism" # Plain text or bcrypt hash (escape "$" with "$$")
volumes:
- "~/Pictures/Originals:/home/photoprism/Pictures/Originals" # [local path]:[container path]
- "~/Pictures/Import:/home/photoprism/Pictures/Import" # [local path]:[container path] (optional)