You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just now saw Azure-Samples#186, I didn't realize before that there was an effort in
place to do this work. There are parts of that PR that look
good—@luisquintanilla how should we proceed?
I pulled in the changes from the PR that I liked. ~Let's add the CPM in
a separate PR, since versions weren't bumped~.
I've bumped the versions, and I'm updating this PR to utilize the CPM
feature since it does improve the `PacakgeReference` experience.
---------
Co-authored-by: XiaoYun Zhang <[email protected]>
Copy file name to clipboardExpand all lines: app/Dockerfile
+4-3
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,14 @@
1
1
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
2
2
3
-
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
3
+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
4
4
WORKDIR /app
5
-
EXPOSE80
5
+
EXPOSE8080
6
6
EXPOSE 443
7
7
8
-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:7.0 AS build
8
+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS build
0 commit comments