Skip to content

Commit

Permalink
:sad: downgrade to jdk 21 because issue with devops scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
celinepelletier committed May 28, 2024
1 parent fce7233 commit 648d2bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM openjdk:23-jdk-slim as build-keys
FROM openjdk:21-jdk-slim as build-keys

WORKDIR /tmp/kf-key-management
COPY . .

RUN ./mvnw package -DskipTests

FROM openjdk:23-jdk-slim
FROM openjdk:21-jdk-slim

RUN mkdir -p /opt/kidsfirst/keys
COPY --from=build-keys /tmp/kf-key-management/target/keys.jar /opt/kidsfirst/keys/keys.jar
Expand Down

0 comments on commit 648d2bf

Please sign in to comment.