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
2e17504403
commit
823f41c08d
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
# Build stage
|
# Build stage
|
||||||
FROM openjdk:17-jdk-slim as builder
|
FROM registry.access.redhat.com/ubi8/openjdk-17: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 openjdk:17-jre-slim
|
FROM registry.access.redhat.com/ubi8/openjdk-17-runtime:latest
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue