From e7b9c8dd01b326e0e69ffb527686ce6c33088cbf Mon Sep 17 00:00:00 2001 From: konsthol Date: Tue, 4 Nov 2025 20:49:14 +0200 Subject: [PATCH] Please enter the commit message for your changes. Lines starting with '#' will be ignored, and an empty message aborts the commit. --- .gitea/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 88f6046..d7e9095 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -42,7 +42,7 @@ jobs: cd app pyinstaller --onefile --add-data "ui:ui" wolServer.py else - echo 'FROM arm64v8/python:3.13-slim-bullseye + echo 'FROM arm64v8/python:3.13-slim-bullseye AS builder WORKDIR /app COPY requirements.txt . COPY app ./app @@ -51,7 +51,7 @@ jobs: && cd /app/app && pyinstaller --onefile --add-data "ui:ui" wolServer.py \ && mkdir -p /output && cp /app/app/dist/wolServer /output/ \ FROM scratch - COPY --from=0 /output /output' > Dockerfile + COPY --from=builder /output /output' > Dockerfile docker buildx build --platform linux/arm64/v8 --output type=local,dest=app/dist . fi