anthracite/Dockerfile
Nicholas Orlowsky c9fdf3b85d
init commit
2023-09-06 16:44:29 -04:00

8 lines
115 B
Docker

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