add health check for image

This commit is contained in:
decentral1se
2022-08-24 12:22:50 +03:00
committed by handlerug
parent 7bd47d0195
commit 1cd63103b6
+3
View File
@@ -7,6 +7,9 @@ RUN go build -o /out/mycorrhiza .
FROM alpine/git as app
EXPOSE 1737
RUN apk add --no-cache curl
HEALTHCHECK CMD curl -f localhost:1737 || exit 1
WORKDIR /
RUN mkdir wiki
COPY --from=build /out/mycorrhiza /usr/bin