dcmerge/Dockerfile
CSRBot 4c798c951c
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
chore(deps): update docker.io/library/golang docker tag to v1.23.4
2024-12-04 02:06:53 +00:00

20 lines
347 B
Docker

FROM docker.io/library/golang:1.23.4-alpine3.19 AS build
RUN apk add git make
WORKDIR /workspace
ADD ./ /workspace
RUN make install \
DESTDIR=/cache \
PREFIX=/usr \
VERSION=${VERSION}
FROM docker.io/library/alpine:3.20
COPY --from=build /cache /
WORKDIR /workspace
VOLUME [ "/workspace" ]
ENTRYPOINT [ "/usr/bin/dcmerge" ]