mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 19:19:02 +00:00
* Use libmagic to identify file types. * Fix mime array for database querying. * go mod tidy * Fix typo * Another fix for the scheduled image build workflow for tag case (#1137) * Try to fix the incorrect tag processing * more debug code * try with context=git * hopefully, final debug * the final commit with no debug code --------- Co-authored-by: Konstantin Koval * Add benchmark. * rollback workflows. * Fix AI comments. * Build image. * Fix AI comments. * Fix AI comments. * Rollback build workflow. --------- Co-authored-by: Kostiantyn <32730812+kkovaletp@users.noreply.github.com>
17 lines
678 B
Bash
Executable File
17 lines
678 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
apt-get update
|
|
apt-get install -y curl exiftool
|
|
|
|
# libheif dependencies
|
|
apt-get install -y libdav1d6 librav1e0 libde265-0 libx265-199 libjpeg62-turbo libopenh264-7 libpng16-16 libnuma1 zlib1g
|
|
# libraw dependencies
|
|
apt-get install -y libjpeg62-turbo liblcms2-2 zlib1g libgomp1
|
|
# ImageMagick dependencies
|
|
apt-get install -y libjxl0.7 liblcms2-2 liblqr-1-0 libdjvulibre21 libjpeg62-turbo libopenjp2-7 libopenexr-3-1-30 libpng16-16 libtiff6 libwebpmux3 libwebpdemux2 libwebp7 libxml2 zlib1g liblzma5 libbz2-1.0 libgomp1
|
|
# go-face dependencies
|
|
apt-get install -y libdlib19.1 libblas3 liblapack3 libjpeg62-turbo
|
|
# libmagic dependencies
|
|
apt-get install -y libmagic1
|