mirror of
https://github.com/Dannecron/spring-boot-demo.git
synced 2025-12-25 16:22:35 +03:00
10 lines
156 B
Docker
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"]
|