We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5dedce + e916777 commit cab67d8Copy full SHA for cab67d8
content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.arm32v7.debug
@@ -8,11 +8,11 @@ RUN useradd -ms /bin/bash moduleuser
8
USER moduleuser
9
RUN curl -sSL https://aka.ms/getvsdbgsh | bash /dev/stdin -v latest -l ~/vsdbg
10
11
-FROM mcr.microsoft.com/dotnet/sdk:6.0-bullseye-slim-arm32v7 AS build-env
+FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
12
WORKDIR /app
13
14
COPY *.csproj ./
15
-RUN dotnet restore
+RUN dotnet restore -r linux-arm
16
17
COPY . ./
18
RUN dotnet publish -c Debug -o out
0 commit comments