mirror of
https://github.com/go-micro/go-micro.git
synced 2025-05-25 21:53:14 +02:00
7 lines
147 B
Docker
7 lines
147 B
Docker
FROM alpine:3.2
|
|
RUN apk add --update ca-certificates && \
|
|
rm -rf /var/cache/apk/* /tmp/*
|
|
ADD health /health
|
|
WORKDIR /
|
|
ENTRYPOINT [ "/health" ]
|