Optimized Dockerfile

This commit is contained in:
Kevin Veen-Birkenbach
2025-07-11 07:37:21 +02:00
parent 84229a719c
commit cf2f1966c7
2 changed files with 7 additions and 1 deletions

View File

@@ -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"]

View File

@@ -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