2018-11-08 10:56:11 +01:00
FROM ubuntu:18.04
LABEL maintainer = "Michael Mayer <michael@liquidbytes.net>"
2019-05-16 08:41:16 +02:00
ARG BUILD_TAG
2018-11-12 06:58:39 +01:00
ENV DEBIAN_FRONTEND noninteractive
# Configure apt-get
RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80retry
RUN echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/80recommends
RUN echo 'APT::Install-Suggests "false";' > /etc/apt/apt.conf.d/80suggests
RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/80forceyes
RUN echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissin
2018-11-09 10:56:52 +01:00
# Install dev / build dependencies
2018-11-12 06:58:39 +01:00
RUN apt-get update && apt-get upgrade && \
apt-get install \
build-essential \
curl \
2019-05-07 15:41:33 +02:00
chrpath \
libssl-dev \
libxft-dev \
libfreetype6 \
2018-11-12 06:58:39 +01:00
libfreetype6-dev \
2019-05-07 15:41:33 +02:00
libfontconfig1 \
libfontconfig1-dev \
2018-11-12 06:58:39 +01:00
libhdf5-serial-dev \
libpng-dev \
libzmq3-dev \
pkg-config \
software-properties-common \
rsync \
unzip \
2019-06-06 14:44:29 +02:00
zip \
2018-11-12 06:58:39 +01:00
g++ \
gcc \
libc6-dev \
gpg-agent \
apt-utils \
make \
nano \
wget \
git \
mysql-client \
2019-05-07 15:41:33 +02:00
tzdata \
2019-05-09 06:18:22 +02:00
gconf-service \
2019-05-20 16:39:41 +02:00
chromium-browser \
2019-06-06 14:44:29 +02:00
firefox \
libheif-examples \
2020-02-03 23:40:45 +01:00
exiftool \
ffmpeg
2018-11-08 10:56:11 +01:00
2019-06-06 14:44:29 +02:00
# Install RAW to JPEG converter
2020-01-20 01:18:36 +01:00
RUN sh -c "echo 'deb http://download.opensuse.org/repositories/graphics:/darktable/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/graphics:darktable.list" && \
wget -qO - https://download.opensuse.org/repositories/graphics:darktable/xUbuntu_18.04/Release.key | apt-key add - && \
2018-11-08 10:56:11 +01:00
apt-get update && \
2018-11-12 06:58:39 +01:00
apt-get install darktable && \
2018-12-18 18:38:30 +01:00
apt-get upgrade && \
apt-get dist-upgrade
2018-11-08 10:56:11 +01:00
2020-04-22 10:27:02 +02:00
# Install & configure TensorFlow for C,
# see https://www.tensorflow.org/install/lang_c
2019-07-15 20:41:27 +02:00
#
2020-04-22 10:27:02 +02:00
# We also have custom builds available:
2019-07-15 20:41:27 +02:00
# https://dl.photoprism.org/tensorflow/linux/
#
2019-06-29 23:27:42 +02:00
ENV LD_LIBRARY_PATH /root/.local/lib:/usr/local/lib:/usr/lib:/lib
ENV TF_CPP_MIN_LOG_LEVEL 0
2018-11-08 10:56:11 +01:00
RUN curl -L \
2020-04-27 19:00:15 +02:00
"https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz" | \
2019-06-26 05:05:12 +02:00
tar -C "/usr" -xz
2018-11-08 10:56:11 +01:00
RUN ldconfig
2019-05-07 15:41:33 +02:00
# Install NodeJS
2020-01-20 00:08:01 +01:00
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
2018-11-08 10:56:11 +01:00
RUN apt-get update && \
2019-05-07 02:05:01 +02:00
apt-get install nodejs && \
2018-11-08 10:56:11 +01:00
apt-get clean && \
rm -rf /var/lib/apt/lists/*
2019-05-07 15:41:33 +02:00
# Install and configure NodeJS Package Manager (npm)
ENV NODE_ENV production
2019-06-17 22:39:17 +02:00
RUN npm install --unsafe-perm= true --allow-root -g npm testcafe chromedriver
2019-05-07 02:05:01 +02:00
RUN npm config set cache ~/.cache/npm
2018-11-08 10:56:11 +01:00
2018-11-09 10:56:52 +01:00
# Install Go
2020-04-20 23:48:36 +02:00
ENV GOLANG_VERSION 1.14.2
2018-11-08 10:56:11 +01:00
RUN set -eux; \
\
url = " https://golang.org/dl/go ${ GOLANG_VERSION } .linux-amd64.tar.gz " ; \
wget -O go.tgz " $url " ; \
2020-04-20 23:48:36 +02:00
echo "6272d6e940ecb71ea5636ddb5fab3933e087c1356173c61f4a803895e947ebb3 *go.tgz" | sha256sum -c -; \
2018-11-08 10:56:11 +01:00
tar -C /usr/local -xzf go.tgz; \
rm go.tgz; \
export PATH = " /usr/local/go/bin: $PATH " ; \
go version
2018-11-09 10:56:52 +01:00
# Configure Go environment
2018-11-08 10:56:11 +01:00
ENV GOPATH /go
ENV GOBIN $GOPATH /bin
2019-06-29 23:27:42 +02:00
ENV PATH $GOBIN :/usr/local/go/bin:/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2018-11-08 10:56:11 +01:00
ENV GO111MODULE on
RUN mkdir -p " $GOPATH /src " " $GOPATH /bin " && chmod -R 777 " $GOPATH "
2018-11-08 16:41:14 +01:00
# Download TensorFlow model and test files
RUN rm -rf /tmp/* && mkdir -p /tmp/photoprism
2019-12-14 15:41:37 +01:00
RUN wget " https://dl.photoprism.org/tensorflow/nsfw.zip? ${ BUILD_TAG } " -O /tmp/photoprism/nsfw.zip
2019-05-16 08:41:16 +02:00
RUN wget " https://dl.photoprism.org/tensorflow/nasnet.zip? ${ BUILD_TAG } " -O /tmp/photoprism/nasnet.zip
RUN wget " https://dl.photoprism.org/fixtures/testdata.zip? ${ BUILD_TAG } " -O /tmp/photoprism/testdata.zip
2018-11-08 16:41:14 +01:00
2020-01-13 23:32:50 +01:00
# Install additional tools for development
2019-06-03 16:31:15 +02:00
RUN env GO111MODULE = off /usr/local/go/bin/go get -u golang.org/x/tools/cmd/goimports
2020-01-13 23:32:50 +01:00
RUN env GO111MODULE = off /usr/local/go/bin/go get -u github.com/miku/zek/cmd/...
RUN env GO111MODULE = off /usr/local/go/bin/go get -u github.com/tsliwowicz/go-wrk
2019-06-03 16:31:15 +02:00
RUN env GO111MODULE = off /usr/local/go/bin/go get -u github.com/kyoh86/richgo
RUN echo "alias go=richgo" > /root/.bash_aliases
2018-11-08 10:56:11 +01:00
2018-11-08 20:29:16 +01:00
# Set up project directory
WORKDIR "/go/src/github.com/photoprism/photoprism"
2019-06-29 23:27:42 +02:00
# Expose HTTP port 2342 plus 4000 for TiDB and 9515 for chromedriver
EXPOSE 2342 4000 9515
2018-11-08 10:56:11 +01:00
2018-11-09 10:56:52 +01:00
# Keep container running (services can be started manually using a terminal)
2019-04-18 06:33:34 +02:00
CMD tail -f /dev/null