yosifkit
yosifkit
With user namespaces this is less of an issue than it has been in the past. You can map "container root" to be any specific user id on your docker...
The reason for official images to not run as root is based on the purpose of the image. Images that are a service like mysql and postgres run as a...
Quick example to create an image that allows running as any user: ```Dockerfile FROM tomcat:9-jre8 # roughly a chmod 777, but don't add executable to regular files RUN chmod -R...
We do have jdk 8 images based on microsoft/windowsservercore ([`openjdk:8-jdk-windowsservercore`](https://github.com/docker-library/openjdk/blob/9745c87a15896ec558429a826e23926e721e4846/8-jdk/windows/windowsservercore/Dockerfile)) and microsoft/nanoserver ([`openjdk:8-jdk-nanoserver`](https://github.com/docker-library/openjdk/blob/9745c87a15896ec558429a826e23926e721e4846/8-jdk/windows/nanoserver/Dockerfile)). They were merged in https://github.com/docker-library/openjdk/pull/88 and pushed to the Docker Hub with https://github.com/docker-library/official-images/pull/26. It should be possible...
`alibaba-dragonwell:11-jdk-alpine3.16` still has the old `apk update/add` lines. --- The `JAVA_VERSION` environment variable on the java 11 variants (`jdk-11.0.15+10`) doesn't seem to match the installed versions. Output during build: ```console...
It looks like the `dragonwell-releng/dragonwell-containers` repo uses a `main` branch, so the library files will need a `GitFetch: refs/heads/main` (failing github actions check). Otherwise, the rest looks good to me.
Hello! :sparkles: Thanks for your interest in contributing to the official images program. :thought_balloon: As you may have noticed, we've usually got a pretty decently sized queue of new images...
It is not necessary to copy your tests over here. Our current tests are mostly a smoke test to ensure we don't merge something obviously broken or insecure. CI in...
Sorry for the delay! Docs PR looks good to me. Just a few items to consider :monocle_face: and then hopefully this can be updated and merged. :pray::tada: - :thinking: unbounded...
Hello! :sparkles: Thanks for your interest in contributing to the official images program. :thought_balloon: As you may have noticed, we've usually got a pretty decently sized queue of new images...