charbelmalo commited on
Commit
14e5612
·
1 Parent(s): e8026aa

install git in Dockerfile for repository cloning

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -13,9 +13,10 @@ ENV PYTHONDONTWRITEBYTECODE=1
13
  ENV PYTHONUNBUFFERED=1
14
 
15
 
 
16
 
17
  # Clone your repository (replace with your repo URL)
18
- RUN git clone https://github.com/charbelmalo/LinkMasterXS app
19
 
20
  # Set the working directory
21
  WORKDIR /app
 
13
  ENV PYTHONUNBUFFERED=1
14
 
15
 
16
+ RUN apt-get update && apt-get install -y git
17
 
18
  # Clone your repository (replace with your repo URL)
19
+ RUN git clone https://github.com/charbelmalo/LinkMasterXS ./app
20
 
21
  # Set the working directory
22
  WORKDIR /app