From cf2f1966c7122eb9eef089f6a79fbbe36e65834d Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 11 Jul 2025 07:37:21 +0200 Subject: [PATCH] Optimized Dockerfile --- Dockerfile | 2 +- README.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1129b4a..9673c6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY . . RUN pip install --upgrade pip \ && pip install PyYAML \ && chmod +x main.py \ - && python main.py install package-manager --no-verification --quiet + && python main.py install package-manager --quiet --clone-mode https # Default entrypoint for pkgmgr ENTRYPOINT ["pkgmgr"] diff --git a/README.md b/README.md index a09f3cf..4c97e02 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,12 @@ Alternatively to installing locally, you can use Docker: build the image with docker build --no-cache -t pkgmgr . ``` +or alternativ pull it via + +```bash +docker pull kevinveenbirkenbach/pkgmgr:latest +``` + and then run ```bash