-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update dockerfile with checkout into the custom branch for oid4vci
- Loading branch information
1 parent
0f8638d
commit 995b5f3
Showing
1 changed file
with
5 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 |
---|---|---|
|
@@ -8,11 +8,13 @@ RUN apt-get update && \ | |
apt-get upgrade -y && \ | ||
apt-get install -y git | ||
|
||
ARG GIT_URL=https://ArmandMeppa:[email protected]/adorsys/kc-oid4vci-deployment.git | ||
ARG GIT_BRANCH=issue-25638 # Optional branch to clone, defaults to main | ||
# ARG GIT_URL=https://ArmandMeppa:[email protected]/adorsys/kc-oid4vci-deployment.git | ||
# ARG GIT_BRANCH=issue-25638 # Optional branch to clone, defaults to main | ||
|
||
#RUN mkdir -p /app | ||
# RUN mkdir -p /app | ||
RUN git clone https://ArmandMeppa:[email protected]/adorsys/kc-oid4vci-deployment.git | ||
RUN cd kc-oid4vci-deployment | ||
RUN git checkout issue-25638 | ||
|
||
# Stage 2: Build the project | ||
FROM openjdk:17-jdk-slim AS build | ||
|