prabha-bms commited on
Commit
1b80f81
·
verified ·
1 Parent(s): bf8dc40

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -15,7 +15,9 @@ USER user
15
  WORKDIR /app
16
 
17
  COPY --chown=user ./requirements.txt requirements.txt
 
18
  RUN pip install --no-cache-dir --upgrade pip && \
 
19
  pip install --no-cache-dir --upgrade -r requirements.txt
20
 
21
  COPY --chown=user . /app
 
15
  WORKDIR /app
16
 
17
  COPY --chown=user ./requirements.txt requirements.txt
18
+ COPY --chown=user ./app/insightfy_utils-0.1.0-py3-none-any.whl insightfy_utils-0.1.0-py3-none-any.whl
19
  RUN pip install --no-cache-dir --upgrade pip && \
20
+ pip install --no-cache-dir insightfy_utils-0.1.0-py3-none-any.whl && \
21
  pip install --no-cache-dir --upgrade -r requirements.txt
22
 
23
  COPY --chown=user . /app