File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
22
3- FROM mcr.microsoft.com/dotnet/aspnet:5 .0 AS base
3+ FROM mcr.microsoft.com/dotnet/aspnet:6 .0 AS base
44WORKDIR /app
55EXPOSE 80
66EXPOSE 443
77
8- FROM mcr.microsoft.com/dotnet/sdk:5 .0 AS build
8+ FROM mcr.microsoft.com/dotnet/sdk:6 .0 AS build
99WORKDIR /src
1010COPY ["src/Equinox.Services.Api/Equinox.Services.Api.csproj" , "src/Equinox.Services.Api/" ]
1111RUN dotnet restore "src/Equinox.Services.Api/Equinox.Services.Api.csproj"
@@ -19,4 +19,4 @@ RUN dotnet publish "Equinox.Services.Api.csproj" -c Release -o /app/publish
1919FROM base AS final
2020WORKDIR /app
2121COPY --from=publish /app/publish .
22- ENTRYPOINT ["dotnet" , "Equinox.Services.Api.dll" ]
22+ ENTRYPOINT ["dotnet" , "Equinox.Services.Api.dll" ]
You can’t perform that action at this time.
0 commit comments