-
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.
- Loading branch information
1 parent
8261507
commit c000a2e
Showing
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -3,11 +3,12 @@ FROM node:18-alpine AS clone | |
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && 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 | ||
|
||
#RUN mkdir -p /app | ||
RUN git clone https://ArmandMeppa:[email protected]/adorsys/kc-oid4vci-deployment.git | ||
RUN mkdir -p /app | ||
RUN git clone --depth 1 "$GIT_URL" "$GIT_BRANCH" /app | ||
|
||
# Stage 2: Build the project | ||
FROM openjdk:17-jdk-slim AS build | ||
|