sanjithp-dev commited on
Commit
48447bb
Β·
verified Β·
1 Parent(s): 0af44f8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -70,7 +70,7 @@ USER user
70
  # --no-cache-dir : prevents pip from writing the HTTP cache to disk
71
  # (~200 MB saved in the image layer)
72
  # --user : installs into ~/.local (required since we are not root)
73
- COPY --chown=user:user pyproject.toml /app/pyproject.toml
74
  RUN pip install --no-cache-dir --user .
75
 
76
  # ── Stage 8: Copy project source ──────────────────────────────────────────────
 
70
  # --no-cache-dir : prevents pip from writing the HTTP cache to disk
71
  # (~200 MB saved in the image layer)
72
  # --user : installs into ~/.local (required since we are not root)
73
+ COPY --chown=user:user . /app
74
  RUN pip install --no-cache-dir --user .
75
 
76
  # ── Stage 8: Copy project source ──────────────────────────────────────────────