# 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 --platform=linux/arm64 mcr.microsoft.com/dotnet/aspnet:8.0 AS base USER app WORKDIR /app EXPOSE 8080 EXPOSE 8081 FROM --platform=linux/arm64 mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src # Copiar apenas arquivos de projeto primeiro (melhor cache) COPY ["OnlyOneAccessTemplate/OnlyOneAccessTemplate.csproj", "OnlyOneAccessTemplate/"] RUN dotnet restore "./OnlyOneAccessTemplate/OnlyOneAccessTemplate.csproj" \ --runtime linux-arm64 \ --no-cache # Copiar código fonte depois do restore COPY . . WORKDIR "/src/OnlyOneAccessTemplate" RUN dotnet build "./OnlyOneAccessTemplate.csproj" \ -c $BUILD_CONFIGURATION \ -o /app/build \ --runtime linux-arm64 \ --no-restore FROM build AS publish ARG BUILD_CONFIGURATION=Release RUN dotnet publish "./OnlyOneAccessTemplate.csproj" \ -c $BUILD_CONFIGURATION \ -o /app/publish \ --runtime linux-arm64 \ --no-restore \ --self-contained false \ /p:UseAppHost=false FROM base AS final WORKDIR /app COPY --from=publish /app/publish . # Healthcheck (adicional - opcional mas recomendado) HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \ CMD curl -f http://localhost:8080/health || exit 1 ENTRYPOINT ["dotnet", "OnlyOneAccessTemplate.dll"]