photoprism/Dockerfile

17 lines
510 B
Docker
Raw Normal View History

FROM photoprism/develop:20220217-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
# 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
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 . .