wwuck
wwuck
Thanks for the reply @bhamail. I'll have to do some investigating on this but it shouldn't be too hard to add in as the systemd service file doesn't appear to...
That's exactly what I was looking for. Thanks!
@viceice would this rebuild without cache include running `apt-get -y upgrade`? Is there any downside to running `apt-get upgrade` when building the renovate image? Docker, OWASP, and hadolint all no...
For our images, we are using multi-stage builds with a single RUN command in the intermediate stage to avoid docker caching the `apt-get` commands.
There is another CVE (ReDoS in chalk/ansi-regex) detected in the renovate slim image, https://www.cve.org/CVERecord?id=CVE-2021-3807. I don't think it's likely to be a real problem for renovate though as renovate images...
https://github.com/hadolint/hadolint/wiki/DL3009 https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#apt-get Deleting `rm -rf /var/lib/apt/lists/*` in the same `RUN` statement as `apt-get install` means the package index will always be refreshed on install. I would be also pinning apt...
Hmmm, after some more reading, it looks like the only way to really avoid the cache (if you're not version pinning with `ARG`) is to either include `ADD`/`COPY` statements, or...
I'm currently setting up my first DSpace instance so I can give that a try on postgres 16
So I upgraded my database from postgres 15 to postgres 16 and ran the `/opt/dspace/bin/dspace database migrate` command again. This is running on an empty DSpace 7.6 backend as I...
After I run the `./dspace database migrate`, I can see that `eperson_group_id` on `epersongroup` table is empty. Is this field supposed to be populated? I also see `eperson_id` is empty...