MeiRiYiCheng_2_new/netcore/YB.DeviceV2/YB.DeviceV2.Web.Entry/Dockerfile

8 lines
277 B
Docker
Raw Normal View History

2025-07-16 17:06:16 +08:00
#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
WORKDIR /app
EXPOSE 80
EXPOSE 443
COPY . .
ENTRYPOINT ["dotnet", "YB.DeviceV2.Web.Entry.dll"]