yasserrmd commited on
Commit
e7c845d
·
verified ·
1 Parent(s): 9596426

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,8 +13,8 @@ WORKDIR /app
13
  COPY --chown=user ./requirements.txt /app/requirements.txt
14
 
15
  # Install dependencies
16
- RUN pip install --no-cache-dir --upgrade pip \\
17
- && pip install --no-cache-dir -r requirements.txt
18
 
19
  # Copy the rest of the application code
20
  COPY --chown=user . /app
 
13
  COPY --chown=user ./requirements.txt /app/requirements.txt
14
 
15
  # Install dependencies
16
+ RUN pip install --no-cache-dir --upgrade pip
17
+ RUN pip install --no-cache-dir -r requirements.txt
18
 
19
  # Copy the rest of the application code
20
  COPY --chown=user . /app