Piped-Backend/Dockerfile.ci

23 lines
483 B
Docker
Raw Normal View History

FROM eclipse-temurin:21.0.2_13-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 /
2023-08-04 15:25:52 +00:00
COPY ./piped.jar /app/piped.jar
COPY VERSION .
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh
2023-08-04 15:25:52 +00:00
ENTRYPOINT ["/hotspot-entrypoint.sh"]