- ASP.NET Core 9 Razor Pages + Minimal API hybrid - 14 validators (CPF, CEP, CNPJ, email, phone, name, yes-no, birthdate, handoff, cancel-intent, company-name, plate-br, postal-code, validate_reply) - OAuth login (Google, Microsoft, GitHub) + cookie auth - MongoDB usage tracking + CEP cache collection - Stripe checkout with inline PriceData (no Price IDs) - MCP server for Claude Code / Cursor integration - Playground (10 calls/IP/day, no auth) - Docs: Quickstart, API Reference, N8N, MCP, Créditos, Erros, Fluxos - Credit system: 3 cr standard validators, 5 cr validate_reply - SmartSuggestion: contextual re-ask via IA when obtained=false - Per-IP rate limiting + daily cap + shared-IP abuse detection - Lightbox for comic images - Validadores page split: Brasileiros / Universais + Em breve Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
729 B
Docker
27 lines
729 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
|
WORKDIR /src
|
|
COPY ["src/Nalu.Api/Nalu.Api.csproj", "src/Nalu.Api/"]
|
|
RUN dotnet restore "src/Nalu.Api/Nalu.Api.csproj"
|
|
COPY . .
|
|
WORKDIR "/src/src/Nalu.Api"
|
|
RUN dotnet build "Nalu.Api.csproj" -c Release -o /app/build
|
|
|
|
FROM build AS publish
|
|
# linux-arm64 targets OCI ARM64 servers; remove -r flag for x64 hosts
|
|
RUN dotnet publish "Nalu.Api.csproj" -c Release -o /app/publish \
|
|
--self-contained false \
|
|
/p:UseAppHost=false
|
|
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY --from=publish /app/publish .
|
|
|
|
ENV ASPNETCORE_URLS=http://+:8080
|
|
ENV ASPNETCORE_ENVIRONMENT=Production
|
|
|
|
ENTRYPOINT ["dotnet", "Nalu.Api.dll"]
|