Add healthcheck to Dockerfiles

Add healthcheck to hotspot.

Add healthcheck to graalvm.

Add the healthcheck script.
This commit is contained in:
Kavin 2023-08-23 21:00:13 +01:00
parent 63891ae0e2
commit bfdf1a567e
No known key found for this signature in database
GPG key ID: 6E4598CA5C92C41F
7 changed files with 68 additions and 4 deletions

View file

@ -9,9 +9,17 @@ RUN --mount=type=cache,target=/root/.gradle/caches/ \
FROM eclipse-temurin:17-jre
RUN --mount=type=cache,target=/var/cache/apt/ \
apt-get update && \
apt-get install -y --no-install-recommends \
curl \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app/
COPY hotspot-entrypoint.sh /
COPY hotspot-entrypoint.sh docker-healthcheck.sh /
COPY --from=build /app/build/libs/piped-1.0-all.jar /app/piped.jar
@ -19,4 +27,5 @@ COPY VERSION .
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh
ENTRYPOINT ["/hotspot-entrypoint.sh"]