Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
| 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 ββββββββββββββββββββββββββββββββββββββββββββββ
|