tarr/Dockerfile
CSRBot e31e10c7bb
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update docker.io/library/golang Docker tag to v1.23.3
2024-11-07 08:29:09 +00:00

20 lines
386 B
Docker

FROM docker.io/library/golang:1.23.3-alpine3.19 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.20
COPY --from=build /cache /