photoprism/Dockerfile

14 lines
449 B
Docker
Raw Normal View History

FROM photoprism/develop:220219-bullseye
## other base images to choose from...
# FROM photoprism/develop:buster # Debian 10 (Buster)
# FROM photoprism/develop:impish # Ubuntu 21.10 (Impish Indri)
2018-10-31 11:57:01 +00:00
# copy entrypoint script to container
COPY --chown=root:root /docker/develop/entrypoint.sh /entrypoint.sh
# define working directory in container
2018-07-20 08:54:31 +00:00
WORKDIR "/go/src/github.com/photoprism/photoprism"
# copy project source code to container
2020-12-04 10:44:15 +00:00
COPY . .