anthracite/Dockerfile
2023-10-16 14:36:17 -04:00

8 lines
120 B
Docker

FROM alpine as build-env
RUN apk add --no-cache build-base
COPY ./src/ .
RUN make build-release
CMD ["/anthracite"]