2022-02-16 15:49:25 +01:00
|
|
|
FROM photoprism/develop:20220216-bullseye
|
2022-02-15 20:33:47 +01:00
|
|
|
|
2022-02-16 15:49:25 +01:00
|
|
|
## 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
|
|
|
|
2022-02-08 12:51:12 +01:00
|
|
|
# update NPM JS package manager
|
2022-02-15 20:33:47 +01:00
|
|
|
RUN npm install -g npm
|
2022-02-08 12:51:12 +01:00
|
|
|
|
2022-02-15 20:33:47 +01:00
|
|
|
# copy scripts to test changes
|
2022-01-06 11:31:37 +01:00
|
|
|
COPY --chown=root:root /docker/develop/entrypoint.sh /entrypoint.sh
|
2021-09-29 09:01:57 +02:00
|
|
|
COPY --chown=root:root /docker/scripts/Makefile /root/Makefile
|
2021-09-28 18:51:23 +02:00
|
|
|
|
2022-02-08 12:51:12 +01:00
|
|
|
# set up project directory
|
2018-07-20 10:54:31 +02:00
|
|
|
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
2021-09-21 20:31:42 +02:00
|
|
|
|
2020-12-04 11:44:15 +01:00
|
|
|
COPY . .
|