arm dockerfile update

master
Tudor Stanciu 2022-06-18 09:21:28 +03:00
parent 7771d774cc
commit 4ba000d9b5
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
#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/core/aspnet:3.1-buster-slim-arm32v7 AS base
FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim-arm32v7 AS base
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim-arm32v7 AS build
WORKDIR /src
COPY dependencies.props .
COPY Directory.Build.props .