feat(goreleaser): init
Some checks failed
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 5s
Markdown linter / markdown-lint (push) Successful in 8s
Golang Tests / unittest (push) Failing after 16s

This commit is contained in:
2025-05-13 17:41:21 +02:00
parent 77135a002a
commit 47575b614a
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