anthracite/Dockerfile

8 lines
115 B
Docker
Raw Normal View History

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