Docker container on Postman error: Client network socket disconnected before secure TLS connection was established
I'm running a Docker container like this: When I call this endpoint on Postman, I get this error: My Dockerfile.yml is like this: FROM mcr.microsoft.com/dotnet/sdk:7.0 AS base WORKDIR /app FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build WORKDIR /src COPY . . RUN dotnet…