Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0-azurelinux3.0-amd64 AS installer
ARG DOTNET_VERSION
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-azurelinux3.0-amd64 AS installer

# Install dependencies for building pyicu wheel from source (dependency of scancode-toolkit)
RUN tdnf update -y \
Expand All @@ -17,10 +18,11 @@ RUN tdnf update -y \
RUN SCANCODE_VERSION="32.4.1" \
&& python3 -m venv /venv \
&& source /venv/bin/activate \
&& pip install scancode-toolkit==$SCANCODE_VERSION
&& pip install scancode-toolkit==$SCANCODE_VERSION \
&& pip install click==8.2.2


FROM mcr.microsoft.com/dotnet/sdk:10.0-azurelinux3.0-amd64
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-azurelinux3.0-amd64

COPY --from=installer /venv /venv

Expand Down
Loading
Loading