CarolinePascal commited on
Commit
aabc0fe
·
unverified ·
1 Parent(s): c7c25c5

fix(git clone): switching from ssh to https for unmute git clone

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -30,7 +30,7 @@ RUN curl -fsSL https://get.pnpm.io/install.sh | sh - \
30
  RUN python3 -m pip install --upgrade pip
31
 
32
  # Example: clone your external repo early
33
- RUN git clone git@github.com:CarolinePascal/unmute.git /app/unmute
34
 
35
  # Copy rest of your app
36
  COPY . /app
 
30
  RUN python3 -m pip install --upgrade pip
31
 
32
  # Example: clone your external repo early
33
+ RUN git clone https://github.com/CarolinePascal/unmute.git /app/unmute
34
 
35
  # Copy rest of your app
36
  COPY . /app