mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 16:59:08 +00:00
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
apk update
|
|
|
|
apk add go g++ blas-dev cblas lapack-dev jpeg-dev libheif-dev
|
|
apk add dlib-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
|
|
|
|
# Install tools for development
|
|
apk add sqlite
|
|
go install github.com/cespare/reflex@latest
|