2018-12-19 01:39:42 +01:00
|
|
|
FROM photoprism/photoprism:latest as build
|
2018-12-19 00:24:02 +01:00
|
|
|
|
2019-05-09 07:48:41 +02:00
|
|
|
# Hide TensorFlow warnings
|
|
|
|
ENV TF_CPP_MIN_LOG_LEVEL 2
|
|
|
|
|
2019-06-30 00:20:06 +02:00
|
|
|
RUN wget -qO- https://dl.photoprism.org/fixtures/demo.tar.gz | tar xvz -C Pictures/Import
|
2018-12-19 00:24:02 +01:00
|
|
|
|
2019-05-09 07:48:41 +02:00
|
|
|
# Import example photos
|
2018-12-19 00:24:02 +01:00
|
|
|
RUN photoprism import
|
2018-12-11 02:00:30 +01:00
|
|
|
|
|
|
|
# Start PhotoPrism server
|
2019-11-11 22:14:34 +01:00
|
|
|
CMD photoprism --public start
|