Skip to content

Instantly share code, notes, and snippets.

View yensei's full-sized avatar
😀

Julio C. Muñoz yensei

😀
View GitHub Profile
@yensei
yensei / gist:f058a795bc19799781c93ac41cd87abe
Created April 26, 2024 00:14
dockerfile-mvn-spring-boot-example
# 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