Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,16 @@ COPY --from=ruby --chown=$USER:$USER $RBENV_ROOT $RBENV_ROOT

COPY --from=scancode-license-data --chown=$USER:$USER /opt/scancode-license-data /opt/scancode-license-data

#FOSSology-nomossa
ARG FOSSOLOGY_NOMOSSA_VERSION

RUN mkdir -p /opt/FOSSology-nomossa/bin && \
wget -q https://github.com/fossology/fossology/releases/download/$FOSSOLOGY_NOMOSSA_VERSION/FOSSology-nomossa \
-O /opt/FOSSology-nomossa/bin/FOSSology-nomossa \
&& chmod +x /opt/FOSSology-nomossa/bin/FOSSology-nomossa

ENV PATH=$PATH:/opt/FOSSology-nomossa/bin

#------------------------------------------------------------------------
# Container with all supported package managers.
FROM minimal-tools AS all-tools
Expand Down
1 change: 1 addition & 0 deletions docker/versions.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ARG CONAN_VERSION=1.66.0
ARG CONAN2_VERSION=2.14.0
ARG DART_VERSION=2.18.4
ARG DOTNET_VERSION=6.0
ARG FOSSOLOGY_NOMOSSA_VERSION=5.1.0
ARG GO_VERSION=1.24.5
ARG HASKELL_STACK_VERSION=2.13.1
ARG JAVA_VERSION=21
Expand Down
Loading