Signed-off-by: Thiago Canozzo Lahr <tclahr@gmail.com>
This commit is contained in:
Thiago Canozzo Lahr
2026-02-26 15:58:59 -03:00
parent 88d66e1232
commit 3583af1cf0
2 changed files with 3 additions and 5 deletions

View File

@@ -38,18 +38,17 @@ function update_script() {
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "immichframe" "immichFrame/ImmichFrame" "tarball" "latest" "/tmp/immichframe"
msg_info "Building Application"
cd /tmp/immichframe
$STD /opt/dotnet/dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \
/opt/dotnet/dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \
--configuration Release \
--runtime linux-x64 \
--self-contained false \
--output /app
cd /tmp/immichframe/immichFrame.Web
$STD npm ci
$STD npm run build
npm ci
npm run build
rm -rf /app/wwwroot/*
cp -r build/* /app/wwwroot
rm -rf /tmp/immichframe
msg_ok "Application Built"
msg_info "Starting Service"

View File

@@ -47,7 +47,6 @@ cd /tmp/immichframe/immichFrame.Web
$STD npm ci
$STD npm run build
cp -r build/* /app/wwwroot
rm -rf /tmp/immichframe
msg_ok "Application Built"
msg_info "Configuring ImmichFrame"