mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-07 02:51:11 +00:00
14 lines
252 B
Text
14 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"]
|
||
|
|
|