-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9047fa4
commit 2703a69
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# Build Stage | ||
FROM openjdk:17-jdk-slim AS builder | ||
|
||
WORKDIR /app | ||
|
||
# Use Git to clone the repository | ||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get install -y git | ||
|
||
WORKDIR /app | ||
|
||
# Clone the Keycloak repository | ||
ARG USERNAME | ||
ARG PAT | ||
RUN git clone https://ArmandMeppa:[email protected]/adorsys/kc-oid4vci-deployment.git | ||
|
||
# Move the cloned repository to the working directory | ||
COPY kc-oid4vci-deployment/* /app/ | ||
# RUN mv kc-oid4vci-deployment/* /app/ | ||
|
||
RUN ./mvnw clean install -DskipTests | ||
|
||
|