2018-12-19 01:39:42 +01:00
|
|
|
FROM photoprism/photoprism:latest as build
|
2018-12-19 00:24:02 +01:00
|
|
|
|
|
|
|
RUN mkdir -p /srv/photoprism/photos/import && \
|
|
|
|
wget -qO- https://dl.photoprism.org/fixtures/demo.tar.gz | tar xvz -C /srv/photoprism/photos/import
|
|
|
|
|
|
|
|
RUN photoprism import
|
2018-12-11 02:00:30 +01:00
|
|
|
|
2019-05-07 15:41:33 +02:00
|
|
|
# Hide TensorFlow warnings
|
|
|
|
ENV TF_CPP_MIN_LOG_LEVEL 2
|
|
|
|
|
2018-12-11 02:00:30 +01:00
|
|
|
# Start PhotoPrism server
|
2019-05-07 15:41:33 +02:00
|
|
|
CMD photoprism start
|