mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
8 lines
258 B
Docker
8 lines
258 B
Docker
FROM openjdk:11
|
|
|
|
RUN wget --no-verbose https://github.com/spdx/tools-java/releases/download/v1.1.3/tools-java-1.1.3.zip && \
|
|
unzip tools-java-1.1.3.zip && \
|
|
rm tools-java-1.1.3.zip
|
|
|
|
ENTRYPOINT ["java", "-jar", "tools-java-1.1.3-jar-with-dependencies.jar"]
|