Updated the docker file to use linux arm image

Signed-off-by: Arash Rohani <Arash.Rohani@gmail.com>
This commit is contained in:
Arash Rohani 2022-05-25 20:21:54 -07:00
parent 7167b10b31
commit 75bc8735ae
1 changed files with 5 additions and 5 deletions

View File

@ -1,19 +1,19 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal-arm32v7 AS base
WORKDIR /app
EXPOSE 5009
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:6.0-focal AS build
WORKDIR /src
COPY ["csharp-subscriber.csproj", "./"]
RUN dotnet restore "csharp-subscriber.csproj"
RUN dotnet restore "csharp-subscriber.csproj" -r linux-arm
COPY . .
WORKDIR "/src/."
RUN dotnet build "csharp-subscriber.csproj" -c Release -o /app/build
RUN dotnet build "csharp-subscriber.csproj" -c Release -o /app/build -r linux-arm --self-contained false --no-restore
FROM build AS publish
RUN dotnet publish "csharp-subscriber.csproj" -c Release -o /app/publish
RUN dotnet publish "csharp-subscriber.csproj" -c Release -o /app/publish -r linux-arm --self-contained false --no-restore
FROM base AS final
WORKDIR /app