You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonarr-seadex-proxy/Dockerfile

11 lines
262 B

FROM golang:1.24-alpine AS build
ARG ARCH=amd64
WORKDIR /build
COPY main.go .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} go build -o seadex-proxy main.go
FROM scratch
COPY --from=build /build/seadex-proxy /seadex-proxy
ENTRYPOINT ["/seadex-proxy"]
EXPOSE 6778