diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7794398..0d49e49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -166,6 +166,7 @@ jobs: - linux/ppc64le # - linux/riscv64 - linux/s390x + - windows/amd64 needs: [web, test] steps: - name: Checkout @@ -213,7 +214,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - file: ./ci.Dockerfile + file: ${{ startsWith(matrix.platform, 'windows') && './ciwindows.Dockerfile' || './ci.Dockerfile' }} platforms: ${{ matrix.platform }} outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=${{ (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request') && 'true' || 'false' }} labels: ${{ steps.meta.outputs.labels }} diff --git a/ciwindows.Dockerfile b/ciwindows.Dockerfile new file mode 100644 index 0000000..3817878 --- /dev/null +++ b/ciwindows.Dockerfile @@ -0,0 +1,49 @@ +# build app +FROM --platform=$BUILDPLATFORM golang:1.23-alpine3.20 AS app-builder +RUN apk add --no-cache git tzdata + +ENV SERVICE=autobrr + +WORKDIR /src + +# Cache Go modules +COPY go.mod go.sum ./ +RUN go mod download + +COPY . ./ + +ARG VERSION=dev +ARG REVISION=dev +ARG BUILDTIME +ARG TARGETOS +ARG TARGETARCH +ARG TARGETVARIANT + +RUN --network=none --mount=target=. \ +export GOOS=$TARGETOS; \ +export GOARCH=$TARGETARCH; \ +[[ "$GOARCH" == "amd64" ]] && export GOAMD64=$TARGETVARIANT; \ +[[ "$GOARCH" == "arm" ]] && [[ "$TARGETVARIANT" == "v6" ]] && export GOARM=6; \ +[[ "$GOARCH" == "arm" ]] && [[ "$TARGETVARIANT" == "v7" ]] && export GOARM=7; \ +echo $GOARCH $GOOS $GOARM$GOAMD64; \ +go build -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${REVISION} -X main.date=${BUILDTIME}" -o /out/bin/autobrr cmd/autobrr/main.go && \ +go build -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${REVISION} -X main.date=${BUILDTIME}" -o /out/bin/autobrrctl cmd/autobrrctl/main.go + +# build runner +FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 AS runner + +LABEL org.opencontainers.image.source="https://github.com/autobrr/autobrr" +LABEL org.opencontainers.image.licenses="GPL-2.0-or-later" +LABEL org.opencontainers.image.base.name="mcr.microsoft.com/windows/nanoserver:ltsc2022" + +ENV HOME="/config" \ + XDG_CONFIG_HOME="/config" \ + XDG_DATA_HOME="/config" + +WORKDIR /app +VOLUME /config +EXPOSE 7474 + +COPY --link --from=app-builder /out/bin/autobrr* / + +ENTRYPOINT ["/autobrr", "--config", "/config"]