photoprism/Dockerfile

13 lines
323 B
Text
Raw Normal View History

2022-02-02 18:33:25 +01:00
FROM photoprism/develop:20220202
2018-10-31 12:57:01 +01:00
# update NPM JS package manager
RUN npm update -g npm
# copy scripts
COPY --chown=root:root /docker/develop/entrypoint.sh /entrypoint.sh
COPY --chown=root:root /docker/scripts/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 . .