deepak191z commited on
Commit
afb04e7
·
verified ·
1 Parent(s): 30a92d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -11,10 +11,10 @@ WORKDIR /app
11
 
12
  # Receive Git URL from build argument
13
 
14
- RUN --mount=type=secret,id=GIT_REP,mode=0444,required=true
15
 
16
- RUN echo "Cloning repository: ${GIT_REP}" && \
17
- git clone https://$(cat /run/secrets/GIT_REP) /app/fastn8n
18
 
19
  WORKDIR /app/fastn8n
20
 
 
11
 
12
  # Receive Git URL from build argument
13
 
14
+ RUN --mount=type=secret,id=URL,mode=0444,required=true
15
 
16
+ RUN echo "Cloning repository: ${URL}" && \
17
+ git clone $(cat /run/secrets/URL) /app/fastn8n
18
 
19
  WORKDIR /app/fastn8n
20