5 Star 0 Fork 1

青见/智慧城市网格化基层治理云平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
IncidentDockerfile 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
zhaoqianan 提交于 2024-06-13 11:06 . fixDockerfile
#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.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["S_Incident.API/S_Incident.API.csproj", "S_Incident.API/"]
COPY ["CommonType/CommonType.csproj", "CommonType/"]
COPY ["S_Incident.Infrasturctre/S_Incident.Infrasturctre.csproj", "S_Incident.Infrasturctre/"]
COPY ["S_Incident.Domains/S_Incident.Domains.csproj", "S_Incident.Domains/"]
COPY ["S_Userinfor.Domains/S_Userinfor.Domains.csproj", "S_Userinfor.Domains/"]
RUN dotnet restore "./S_Incident.API/S_Incident.API.csproj"
COPY . .
WORKDIR "/src/S_Incident.API"
RUN dotnet build "./S_Incident.API.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./S_Incident.API.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "S_Incident.API.dll"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/good-luckp/api.git
[email protected]:good-luckp/api.git
good-luckp
api
智慧城市网格化基层治理云平台
Smart_city

搜索帮助