mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 19:07:28 +00:00
13 lines
252 B
Text
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"]
|
|
|