Skip to content

Commit

Permalink
fix: update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmandMeppa authored Feb 7, 2024
1 parent 8261507 commit c000a2e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c000a2e

Please sign in to comment.