photoprism/Dockerfile

13 lines
323 B
Docker
Raw Normal View History

2022-02-02 17:33:25 +00:00
FROM photoprism/develop:20220202
2018-10-31 11:57:01 +00: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 08:54:31 +00:00
WORKDIR "/go/src/github.com/photoprism/photoprism"
2020-12-04 10:44:15 +00:00
COPY . .