mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-16 04:45:49 +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
|
# Build stage
|
||||||
FROM eclipse-temurin:17-jdk-bullseye as builder
|
FROM adoptopenjdk/openjdk17:latest 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 eclipse-temurin:17-jre-bullseye
|
FROM adoptopenjdk/openjdk17:jre-slim
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue