Piped-Backend/Dockerfile

32 lines
654 B
Docker
Raw Normal View History

2023-04-27 17:35:05 +05:30
FROM eclipse-temurin:17-jdk AS build
2021-01-05 10:56:43 +05:30
WORKDIR /app/
COPY . /app/
RUN --mount=type=cache,target=/root/.gradle/caches/ \
./gradlew shadowJar
2021-01-05 10:56:43 +05:30
2023-04-27 17:35:05 +05:30
FROM eclipse-temurin:17-jre
2021-01-05 10:56:43 +05:30
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/*
2021-01-05 10:56:43 +05:30
WORKDIR /app/
COPY hotspot-entrypoint.sh docker-healthcheck.sh /
2023-08-04 20:55:52 +05:30
2021-01-05 10:56:43 +05:30
COPY --from=build /app/build/libs/piped-1.0-all.jar /app/piped.jar
COPY VERSION .
2021-01-05 10:56:43 +05:30
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh
2023-08-04 20:55:52 +05:30
ENTRYPOINT ["/hotspot-entrypoint.sh"]