FROM 192.168.8.140:5000/mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim AS base WORKDIR /app COPY ./ . RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ENV ASPNETCORE_URLS http://0.0.0.0:9192 ENTRYPOINT ["dotnet", "APT.WebApi.dll"]