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