1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-05-31 21:59:42 +02:00

7 lines
147 B
Docker
Raw Normal View History

2020-12-26 15:17:20 +00:00
FROM alpine:3.2
RUN apk add --update ca-certificates && \
rm -rf /var/cache/apk/* /tmp/*
ADD health /health
WORKDIR /
ENTRYPOINT [ "/health" ]