mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
bfdf1a567e
Add healthcheck to hotspot. Add healthcheck to graalvm. Add the healthcheck script.
22 lines
476 B
Docker
22 lines
476 B
Docker
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 docker-healthcheck.sh /
|
|
|
|
COPY ./piped.jar /app/piped.jar
|
|
|
|
COPY VERSION .
|
|
|
|
EXPOSE 8080
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh
|
|
ENTRYPOINT ["/hotspot-entrypoint.sh"]
|