photoprism/Dockerfile
Michael Mayer a0e9ef048d Tests: Upgrade base image from 220220-bullseye to 220223-bullseye
The new build has testcafe pre-installed.
2022-02-23 12:47:56 +01:00

14 lines
457 B
Docker

FROM photoprism/develop:220223-bullseye
## alternative base images
# FROM photoprism/develop:buster # Debian 10, Codename "Buster"
# FROM photoprism/develop:impish # Ubuntu 21.10, Codename "Impish Indri"
# copy entrypoint script to container
COPY --chown=root:root /docker/develop/entrypoint.sh /entrypoint.sh
# define working directory in container
WORKDIR "/go/src/github.com/photoprism/photoprism"
# copy project source code to container
COPY . .