Update serial reader to .NET 5

This commit is contained in:
2021-05-29 11:48:11 -04:00
parent 5ec0e56b6c
commit bb116cdd3f
2 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim-arm32v7 AS base
FROM mcr.microsoft.com/dotnet/aspnet:5.0-focal-arm32v7 AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
FROM mcr.microsoft.com/dotnet/sdk:5.0-focal AS build
WORKDIR /src
COPY ["./SerialReader.csproj", "./"]
RUN dotnet restore -r linux-arm "SerialReader.csproj"