This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ejecuta aplicaciones spring-boot con JDK 17 compilando en el container utilizando el mvn wrapper | |
FROM openjdk:17-jdk-alpine | |
VOLUME /tmp | |
COPY .mvn ./.mvn | |
COPY src ./src | |
ADD mvnw ./mvnw | |
ADD pom.xml ./pom.xml |