feat(goreleaser): init
All checks were successful
Markdown linter / markdown-lint (push) Successful in 12s
Release / release (push) Successful in 4m37s
Release / sync-to-hub-docker-io (push) Successful in 28s

This commit is contained in:
2025-05-13 17:41:21 +02:00
parent 77135a002a
commit 2e54fd12ee
10 changed files with 308 additions and 773 deletions

View File

@ -1,20 +1,4 @@
FROM docker.io/library/golang:1.23.4-alpine3.19 AS build
FROM scratch AS build
RUN apk add git make
WORKDIR /workspace
ADD ./ /workspace
RUN make -C cmd/autharr install \
DESTDIR=/cache \
PREFIX=/usr \
VERSION=${VERSION}
RUN make -C cmd/healarr install \
DESTDIR=/cache \
PREFIX=/usr \
VERSION=${VERSION}
FROM docker.io/library/alpine:3.21
COPY --from=build /cache /
COPY autharr-* /usr/bin/autharr
COPY healarr-* /usr/bin/healarr