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

update Dockerfile to clone repository into the current directory

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -15,12 +15,12 @@ ENV PYTHONUNBUFFERED=1
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
23
 
 
 
 
24
  # Copy and install dependencies
25
  COPY --chown=user: /app/requirements.txt .
26
  RUN pip install --no-cache-dir --upgrade pip
 
15
 
16
  RUN apt-get update && apt-get install -y git
17
 
 
 
 
18
  # Set the working directory
19
  WORKDIR /app
20
 
21
+ # Clone your repository (replace with your repo URL)
22
+ RUN git clone https://github.com/charbelmalo/LinkMasterXS .
23
+
24
  # Copy and install dependencies
25
  COPY --chown=user: /app/requirements.txt .
26
  RUN pip install --no-cache-dir --upgrade pip