Coping all the fils from current location to pod location 85/9485/1
authorSANDEEP KUMAR JAISAWAL <s.jaisawal@samsung.com>
Fri, 4 Nov 2022 09:05:33 +0000 (14:35 +0530)
committerSANDEEP KUMAR JAISAWAL <s.jaisawal@samsung.com>
Fri, 4 Nov 2022 09:05:33 +0000 (14:35 +0530)
Issue-id: AIMLWF-2

Signed-off-by: SANDEEP KUMAR JAISAWAL <s.jaisawal@samsung.com>
Change-Id: I515f38ac802d3640739978831b1107e04d3a65e2

Dockerfile

index acc8282..d40cf05 100644 (file)
@@ -20,16 +20,14 @@ FROM python:3.8
 
 # location in the container
 ENV TA_DIR /home/app/
+WORKDIR ${TA_DIR}
 # Install dependencies
 RUN apt-get update && apt-get install -y \
     python3-pip
 RUN apt-get install -y apt-utils
 
-
 # Copy sources into the container
-COPY tm/ ${TA_DIR}/tm
-COPY tm/requirements.txt ${TA_DIR}
-WORKDIR ${TA_DIR}
+COPY . .
 
 RUN pip3 install .
 RUN pip3 install -r requirements.txt