fixed dockerfile image
This commit is contained in:
parent
e21c69774a
commit
189ac61cd7
|
@ -1,11 +1,11 @@
|
|||
from mcr.microsoft.com/dotnet/sdk:7.0 as build-env
|
||||
from mcr.microsoft.com/dotnet/sdk:8.0 as build-env
|
||||
|
||||
workdir /App
|
||||
copy ./src/ ./
|
||||
run dotnet restore
|
||||
run dotnet publish -c Release -o out
|
||||
|
||||
from mcr.microsoft.com/dotnet/aspnet:7.0
|
||||
from mcr.microsoft.com/dotnet/aspnet:8.0
|
||||
|
||||
workdir /App
|
||||
copy --from=build-env /App/out .
|
||||
|
|
Loading…
Reference in New Issue