1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-11-01 16:13:01 +00:00

add health check for image

This commit is contained in:
decentral1se
2022-08-24 11:09:30 +02:00
committed by handlerug
parent 7bd47d0195
commit 1cd63103b6

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