mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 22:19:07 +00:00
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
apt-get update
|
|
apt-get install -y curl libdlib19.2 ffmpeg exiftool libheif1 imagemagick
|
|
|
|
# Remove build dependencies and cleanup
|
|
apt-get autoremove -y
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|