Skip to content

Commit

Permalink
use bash-friendly substitutions
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller committed Aug 12, 2021
1 parent fb7aef8 commit 63f809a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superchain/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN apt-key add /tmp/mono.asc && rm /tmp/mono.asc
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core and PowerShell
RUN ARCH="${${TARGETPLATFORM#linux/}/amd64/x64}" \
RUN ARCH="${TARGETPLATFORM#linux/}" && ARCH="${ARCH/amd64/x64}" \
&& FEED_URL="https://dotnetcli.azureedge.net/dotnet" \
&& DOTNET_CHANNEL=3.1 \
&& DOTNET_VERSION=$(curl -fSsL "${FEED_URL}/Sdk/${DOTNET_CHANNEL}/latest.version") \
Expand Down

0 comments on commit 63f809a

Please sign in to comment.