37 lines
1.9 KiB
Plaintext
37 lines
1.9 KiB
Plaintext
# 请参阅 https://aka.ms/customizecontainer 以了解如何自定义调试容器,以及 Visual Studio 如何使用此 Dockerfile 生成映像以更快地进行调试。
|
|
|
|
# 此阶段用于在快速模式(默认为调试配置)下从 VS 运行时
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
|
|
|
|
# 此阶段用于生成服务项目
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
|
ARG BUILD_CONFIGURATION=Release
|
|
WORKDIR /src
|
|
COPY ["LearningOfficer.OA.Mobile.Api/LearningOfficer.OA.Mobile.Api.csproj", "LearningOfficer.OA.Mobile.Api/"]
|
|
COPY ["LearningOfficer.OA.Common/LearningOfficer.OA.Common.csproj", "LearningOfficer.OA.Common/"]
|
|
COPY ["LearningOfficer.OA.Core/LearningOfficer.OA.Core.csproj", "LearningOfficer.OA.Core/"]
|
|
COPY ["LearningOfficer.OA.Infrastructure/LearningOfficer.OA.Infrastructure.csproj", "LearningOfficer.OA.Infrastructure/"]
|
|
COPY ["LearningOfficer.OA.Services/LearningOfficer.OA.Services.csproj", "LearningOfficer.OA.Services/"]
|
|
RUN dotnet nuget add source --name marking https://gitea.23544.com/api/packages/marking/nuget/index.json
|
|
RUN dotnet restore "./LearningOfficer.OA.Mobile.Api/LearningOfficer.OA.Mobile.Api.csproj"
|
|
COPY . .
|
|
WORKDIR "/src/LearningOfficer.OA.Mobile.Api"
|
|
RUN dotnet build "./LearningOfficer.OA.Mobile.Api.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
|
|
|
# 此阶段用于发布要复制到最终阶段的服务项目
|
|
FROM build AS publish
|
|
ARG BUILD_CONFIGURATION=Release
|
|
RUN dotnet publish "./LearningOfficer.OA.Mobile.Api.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
|
|
|
# 此阶段在生产中使用,或在常规模式下从 VS 运行时使用(在不使用调试配置时为默认值)
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY --from=publish /app/publish .
|
|
# 设置时区
|
|
ENV TZ=Asia/Shanghai
|
|
# 用于设置环境变量
|
|
ENV ASPNETCORE_ENVIRONMENT=Staging
|
|
ENTRYPOINT ["dotnet", "LearningOfficer.OA.Mobile.Api.dll"] |