iotgateway/Dockerfile

39 lines
1.5 KiB
Docker
Raw Permalink Normal View History

2021-12-12 23:01:36 +08:00
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
2022-01-24 23:19:10 +08:00
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
2021-12-12 23:01:36 +08:00
WORKDIR /app
EXPOSE 518
EXPOSE 1888
2022-03-19 22:40:41 +08:00
EXPOSE 62541
EXPOSE 503
2021-12-12 23:01:36 +08:00
2022-01-24 23:19:10 +08:00
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
2021-12-12 23:01:36 +08:00
WORKDIR /src
2021-12-12 23:01:36 +08:00
COPY ["IoTGateway/IoTGateway.csproj", "IoTGateway/"]
COPY ["IoTGateway.ViewModel/IoTGateway.ViewModel.csproj", "IoTGateway.ViewModel/"]
COPY ["Plugins/Plugin/Plugin.csproj", "Plugins/Plugin/"]
2021-12-12 23:01:36 +08:00
COPY ["IoTGateway.Model/IoTGateway.Model.csproj", "IoTGateway.Model/"]
COPY ["WalkingTec.Mvvm/WalkingTec.Mvvm.Core/WalkingTec.Mvvm.Core.csproj", "WalkingTec.Mvvm/WalkingTec.Mvvm.Core/"]
COPY ["Plugins/PluginInterface/PluginInterface.csproj", "Plugins/PluginInterface/"]
2021-12-12 23:01:36 +08:00
COPY ["IoTGateway.DataAccess/IoTGateway.DataAccess.csproj", "IoTGateway.DataAccess/"]
COPY ["WalkingTec.Mvvm/WalkingTec.Mvvm.TagHelpers.LayUI/WalkingTec.Mvvm.TagHelpers.LayUI.csproj", "WalkingTec.Mvvm/WalkingTec.Mvvm.TagHelpers.LayUI/"]
COPY ["WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/WalkingTec.Mvvm.Mvc.csproj", "WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/"]
2021-12-12 23:01:36 +08:00
RUN dotnet restore "IoTGateway/IoTGateway.csproj"
COPY . .
WORKDIR "/src/IoTGateway"
RUN dotnet build "IoTGateway.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "IoTGateway.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
2023-05-24 22:39:19 +08:00
COPY drivers /app/drivers/
COPY 3d /app/wwwroot/3d/
2021-12-12 23:01:36 +08:00
COPY --from=publish /app/publish .
ENV TZ=Asia/Shanghai
2022-03-19 22:40:41 +08:00
ENTRYPOINT ["dotnet", "IoTGateway.dll"]