containers
containers copied to clipboard
Repo containing the dockerfiles and scripts to produce the official eclipse-temurin containers.
Ref: https://github.com/adoptium/containers/issues/268
GH action: add SBOM for linux docker images+ scanner for dockerfile - use trivy to scan all Dockerfile.release.full - use syft to generate sbom from images we build - upload...
See https://github.com/docker-library/openjdk/issues/282 for context. The src.zip file is ~50MB and there is no need to include it in the temurin images. This seems like a simple way to reduce the...
This is an umbrella issue is to outline SSDF (Secure Software Development Framework) requirements, assess what is already being done upstream in terms of scanning and security, determine any gaps...
Version 17.0.2_8 works as expected, but version 17.0.3_7 fails. Gradle version is 7.4.2 In our dockerfile we have: ```dockerfile FROM eclipse-temurin:17.0.2_8-jdk AS build RUN mkdir /home/uswf COPY . /home/uswf WORKDIR...
Building the alpine images on an Apple silicon (M1) Mac currently fails with an "Unsupported arch: aarch64" error, e.g. from [this code](https://github.com/adoptium/containers/blob/130db1e5356f5a86868b70809c8311b0aad0c756/17/jre/alpine/Dockerfile.releases.full#L31-L40). Would it be possible to add support for...
Hi, are there any plans to build the Alpine-based containers for the arm32v7 (aka. armhf) architecture? So far, there are Alpine builds for other architectures, and non-Alpine builds for arm32v7,...
When using the JDK_JAVA_OPTIONS environment variable it's picked up twice. ```bash $ echo 'public class Test { public static void main(String[] args) { System.out.println("Should pick once"); } }' > Test.java...