2022-04-17 16:28:34 +02:00
|
|
|
#### Base Image: Debian 12, Codename 'Bookworm'
|
2022-03-23 13:39:45 +01:00
|
|
|
FROM debian:bookworm-slim
|
2021-12-14 20:56:24 +01:00
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Copyright © 2018 - 2022 PhotoPrism UG. All rights reserved.
|
|
|
|
#
|
|
|
|
# Questions? Email us at hello@photoprism.app or visit our website to learn
|
|
|
|
# more about our team, products and services: https://photoprism.app/
|
|
|
|
|
|
|
|
# Add Open Container Initiative (OCI) annotations.
|
|
|
|
# See: https://github.com/opencontainers/image-spec/blob/main/annotations.md
|
|
|
|
LABEL org.opencontainers.image.title="PhotoPrism Develop (ARMv7)"
|
2022-04-17 16:28:34 +02:00
|
|
|
LABEL org.opencontainers.image.description="Debian 12, Codename 'Bookworm'"
|
|
|
|
LABEL org.opencontainers.image.url="https://hub.docker.com/repository/docker/photoprism/develop"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/photoprism/photoprism"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://docs.photoprism.app/developer-guide/setup/"
|
|
|
|
LABEL org.opencontainers.image.authors="Michael Mayer <hello@photoprism.app>"
|
|
|
|
LABEL org.opencontainers.image.vendor="PhotoPrism UG"
|
2021-12-14 20:56:24 +01:00
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Declare build parameters.
|
2021-12-14 20:56:24 +01:00
|
|
|
ARG TARGETARCH
|
|
|
|
ARG BUILD_TAG
|
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Set environment variables, see https://docs.photoprism.app/getting-started/config-options/.
|
2022-03-11 09:05:42 +01:00
|
|
|
ENV PHOTOPRISM_ARCH=$TARGETARCH \
|
2022-02-20 12:23:06 +01:00
|
|
|
DOCKER_TAG=$BUILD_TAG \
|
|
|
|
DOCKER_ENV="develop" \
|
2022-04-18 14:14:32 +02:00
|
|
|
PS1="\u@$DOCKER_TAG:\w\$ " \
|
|
|
|
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts:/usr/local/go/bin:/go/bin:/opt/photoprism/bin" \
|
|
|
|
LD_LIBRARY_PATH="/usr/local/lib:/usr/lib" \
|
2022-02-20 12:23:06 +01:00
|
|
|
NODE_ENV="production" \
|
|
|
|
DEBIAN_FRONTEND="noninteractive" \
|
2021-12-14 20:56:24 +01:00
|
|
|
TMPDIR="/tmp" \
|
|
|
|
TF_CPP_MIN_LOG_LEVEL="0" \
|
|
|
|
GOPATH="/go" \
|
2022-07-23 15:13:16 +02:00
|
|
|
GOBIN="/usr/local/bin" \
|
2021-12-14 20:56:24 +01:00
|
|
|
GO111MODULE="on" \
|
2022-05-20 15:44:13 +02:00
|
|
|
CGO_CFLAGS="-g -O2 -Wno-return-local-addr" \
|
|
|
|
PROG="photoprism"
|
2021-12-14 20:56:24 +01:00
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Copy scripts and package sources config.
|
2022-03-11 09:05:42 +01:00
|
|
|
COPY --chown=root:root --chmod=755 /scripts/dist/* /scripts/
|
2022-03-23 13:39:45 +01:00
|
|
|
COPY --chown=root:root --chmod=644 /docker/develop/bookworm/sources.list /etc/apt/sources.list.d/bookworm.list
|
2022-02-19 15:32:52 +01:00
|
|
|
COPY --chown=root:root --chmod=644 /.my.cnf /etc/my.cnf
|
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Update base image and add dependencies.
|
2022-03-11 09:05:42 +01:00
|
|
|
RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
|
2021-12-14 20:56:24 +01:00
|
|
|
echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/80recommends && \
|
|
|
|
echo 'APT::Install-Suggests "false";' > /etc/apt/apt.conf.d/80suggests && \
|
|
|
|
echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/80forceyes && \
|
2022-02-19 15:32:52 +01:00
|
|
|
echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissing && \
|
2022-09-02 13:06:46 +02:00
|
|
|
apt-get update && apt-get -qq upgrade && apt-get -qq install --no-install-recommends \
|
|
|
|
apt-utils gpg pkg-config software-properties-common ca-certificates \
|
|
|
|
build-essential gcc g++ sudo bash make nano lsof lshw git jq \
|
|
|
|
zip unzip wget curl rsync sqlite3 chrpath gettext libc6-dev \
|
|
|
|
libssl-dev libxft-dev libfreetype6 libfreetype6-dev libfontconfig1 \
|
|
|
|
libfontconfig1-dev libhdf5-serial-dev libpng-dev libzmq3-dev \
|
|
|
|
libx264-dev libx265-dev libnss3 libxtst6 librsvg2-bin tzdata \
|
|
|
|
libheif-examples exiftool ffmpeg ffmpegthumbnailer libavcodec-extra \
|
2022-02-25 16:33:46 +01:00
|
|
|
&& \
|
2022-03-11 09:05:42 +01:00
|
|
|
/scripts/install-nodejs.sh && \
|
|
|
|
/scripts/install-tensorflow.sh && \
|
|
|
|
/scripts/install-go.sh && \
|
2022-04-18 14:14:32 +02:00
|
|
|
/scripts/install-go-tools.sh && \
|
|
|
|
echo 'alias ll="ls -alh"' >> /etc/skel/.bashrc && \
|
|
|
|
echo 'export PS1="\u@$DOCKER_TAG:\w\$ "' >> /etc/skel/.bashrc && \
|
|
|
|
echo "ALL ALL=(ALL) NOPASSWD:SETENV: ALL" >> /etc/sudoers.d/all && \
|
|
|
|
cp /etc/skel/.bashrc /root/.bashrc && \
|
|
|
|
/scripts/create-users.sh && \
|
|
|
|
cp /scripts/heif-convert.sh /usr/local/bin/heif-convert && \
|
2022-02-19 15:32:52 +01:00
|
|
|
install -d -m 0777 -o 1000 -g 1000 \
|
2022-09-02 13:06:46 +02:00
|
|
|
/photoprism/originals \
|
|
|
|
/photoprism/import \
|
|
|
|
/photoprism/storage \
|
|
|
|
/photoprism/storage/sidecar \
|
|
|
|
/photoprism/storage/albums \
|
|
|
|
/photoprism/storage/backups \
|
|
|
|
/photoprism/storage/config \
|
|
|
|
/photoprism/storage/cache && \
|
2022-07-19 20:41:36 +02:00
|
|
|
/scripts/cleanup.sh
|
2022-04-18 14:14:32 +02:00
|
|
|
|
|
|
|
# download models and testdata
|
2022-07-19 20:41:36 +02:00
|
|
|
RUN mkdir /tmp/photoprism && \
|
|
|
|
wget "https://dl.photoprism.app/tensorflow/nsfw.zip?${BUILD_TAG}" -O /tmp/photoprism/nsfw.zip && \
|
2021-12-14 20:56:24 +01:00
|
|
|
wget "https://dl.photoprism.app/tensorflow/nasnet.zip?${BUILD_TAG}" -O /tmp/photoprism/nasnet.zip && \
|
|
|
|
wget "https://dl.photoprism.app/tensorflow/facenet.zip?${BUILD_TAG}" -O /tmp/photoprism/facenet.zip && \
|
|
|
|
wget "https://dl.photoprism.app/qa/testdata.zip?${BUILD_TAG}" -O /tmp/photoprism/testdata.zip
|
|
|
|
|
2022-02-16 09:51:43 +01:00
|
|
|
# set up project directory
|
2021-12-14 20:56:24 +01:00
|
|
|
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Expose the following container ports:
|
2022-02-19 15:32:52 +01:00
|
|
|
# - 2342 (HTTP)
|
|
|
|
# - 2343 (Acceptance Tests)
|
2022-09-02 13:06:46 +02:00
|
|
|
# - 2442 (HTTP)
|
|
|
|
# - 2443 (HTTPS)
|
2022-02-19 15:32:52 +01:00
|
|
|
# - 9515 (Chromedriver)
|
|
|
|
# - 40000 (Go Debugger)
|
2022-09-02 13:06:46 +02:00
|
|
|
EXPOSE 2342 2343 2442 2443 9515 40000
|
2021-12-14 20:56:24 +01:00
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Declare container entrypoint script.
|
2022-03-11 09:05:42 +01:00
|
|
|
ENTRYPOINT ["/scripts/entrypoint.sh"]
|
2021-12-14 20:56:24 +01:00
|
|
|
|
2022-09-02 13:06:46 +02:00
|
|
|
# Keep container running.
|
2022-02-19 15:32:52 +01:00
|
|
|
CMD ["tail", "-f", "/dev/null"]
|