anthracite/Dockerfile

13 lines
304 B
Docker
Raw Normal View History

2023-09-06 20:44:29 +00:00
FROM alpine as build-env
2023-10-20 04:45:20 +00:00
RUN apk add --no-cache build-base python3
COPY ./src/ .
2023-09-06 20:44:29 +00:00
RUN make build-release
2023-10-17 17:16:31 +00:00
FROM alpine
RUN apk add --no-cache build-base
COPY --from=build-env /anthracite /anthracite
COPY --from=build-env /www /www
COPY --from=build-env /error_pages /error_pages
2023-09-06 20:44:29 +00:00
CMD ["/anthracite"]