From 46b3ae8a0fa77274b0088c4f9ca31f2638f5c6b5 Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Mon, 2 Sep 2024 02:51:48 -0700 Subject: [PATCH] build(docker): add Windows images (#1640) * feat(docker): add Windows images * Create ciwindows.Dockerfile * freddy? * no it's camel * have as many words with him as you like * better go get more men * an eye for an arm, ricky * mcr.microsoft.com/windows/nanoserver:ltsc2022 * make a dime an hour for the company man --------- Co-authored-by: ze0s <43699394+zze0s@users.noreply.github.com> --- .github/workflows/release.yml | 3 ++- ciwindows.Dockerfile | 49 +++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 ciwindows.Dockerfile 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"]