anthracite/Dockerfile

8 lines
120 B
Docker
Raw Permalink Normal View History

2023-09-06 20:44:29 +00:00
FROM alpine as build-env
RUN apk add --no-cache build-base
COPY ./src/ .
2023-09-06 20:44:29 +00:00
RUN make build-release
CMD ["/anthracite"]