photoprism/Dockerfile

17 lines
506 B
Docker
Raw Normal View History

FROM photoprism/develop:220218-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 12:57:01 +01:00
# update NPM JS package manager
RUN npm install -g npm
# copy scripts to test changes
COPY --chown=root:root /docker/develop/entrypoint.sh /entrypoint.sh
2022-02-18 17:40:58 +01:00
COPY --chown=root:root /scripts/init/Makefile /root/Makefile
# set up project directory
2018-07-20 10:54:31 +02:00
WORKDIR "/go/src/github.com/photoprism/photoprism"
2020-12-04 11:44:15 +01:00
COPY . .