82d61d1f93
Animated GIFs are transcoded to AVC because it is much smaller and thus also suitable for long/large animations. In addition, this commit adds support for more metadata fields such as frame rate, number of frames, file capture timestamp (unix milliseconds), media type, and software version. Support for SVG files can later be implemented in a similar way.
14 lines
No EOL
500 B
Docker
14 lines
No EOL
500 B
Docker
# Debian 12, Codename "Bookworm"
|
|
FROM photoprism/develop:220413-bookworm
|
|
|
|
## alternative base images
|
|
# FROM photoprism/develop:bullseye # Debian 11, Codename "Bullseye"
|
|
# FROM photoprism/develop:buster # Debian 10, Codename "Buster"
|
|
# FROM photoprism/develop:impish # Ubuntu 21.10, Codename "Impish Indri"
|
|
|
|
# define working directory in container
|
|
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
|
|
|
# copy project source code to container
|
|
COPY . .
|
|
COPY --chown=root:root /scripts/dist/* /scripts/ |