...
Excerpt |
---|
Docker Base Images are the images that all applications running on the Infrastructure must build |
...
. |
The images can be found on the official ehealth eHealth docker repository: https://registry.admin.ehealth.sundhed.dk/harbor/projects/11/repositories
Table of Contents |
---|
Info |
---|
The following list does not show the newest image tag, these can always be found at the link above. |
...
- Not running processes as root inside the container.
- This will be enforced by kubernetes Kubernetes when images are started.
- Put "USER 1000" or similar into your DockerfileDocker file, as Kubernetes doesn't support checking non-numeric usernames.
- Use "COPY --chown=1000:1000 to set sufficient permissions to access files inside the container.
- Building minimal images, both in regards to actual size and in regards to number of extra components in the image that can contain security issues
- Not building any passwords or API keys in to the image
...