spring-petclinic/Dockerfile.maven-java25
2025-11-23 15:57:31 -05:00

13 lines
252 B
Text

FROM eclipse-temurin:25-jdk
# Install basic tools
RUN apt-get update && \
apt-get install -y git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
# Maven will be provided by the project's mvnw wrapper
CMD ["bash"]