Files
spring-boot-demo/Dockerfile
Savosin Denis e6db3360c2 add entrypoint to dockerfile and doc
fix resource usage
2025-11-06 15:47:56 +07:00

10 lines
156 B
Docker

FROM eclipse-temurin:20-jdk
WORKDIR /app
COPY ./entrypoint.sh .
RUN chmod +x ./entrypoint.sh
COPY ./build/libs/*.jar .
ENTRYPOINT ["/app/entrypoint.sh"]