mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
fix syntax
This commit is contained in:
parent
ea7ba4762d
commit
e4ba09c31c
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
# Build stage
|
||||
FROM eclipse-temurin:17-jdk-bullseye as builder
|
||||
FROM adoptopenjdk/openjdk17:latest as builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
@ -17,7 +17,7 @@ COPY src ./src
|
|||
RUN ./mvnw package -DskipTests
|
||||
|
||||
# Run stage
|
||||
FROM eclipse-temurin:17-jre-bullseye
|
||||
FROM adoptopenjdk/openjdk17:jre-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
Loading…
Reference in a new issue