dipesh2025 commited on
Commit
0ed8877
·
verified ·
1 Parent(s): 05f02f7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -14,10 +14,10 @@ RUN apt-get update && \
14
  RUN cppcheck --version
15
 
16
  # Copy the requirements file into the container at /app
17
- #COPY requirements.txt .
18
 
19
  # Install any needed packages specified in requirements.txt
20
- #RUN pip install --no-cache-dir -r requirements.txt
21
 
22
  # Copy the application script into the container at /app
23
  COPY app.py .
 
14
  RUN cppcheck --version
15
 
16
  # Copy the requirements file into the container at /app
17
+ COPY requirements.txt .
18
 
19
  # Install any needed packages specified in requirements.txt
20
+ RUN pip install --no-cache-dir -r requirements.txt
21
 
22
  # Copy the application script into the container at /app
23
  COPY app.py .