FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim AS base WORKDIR /app COPY ./ . RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN apt-get update -y && apt-get install -y libgdiplus && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll ENV ASPNETCORE_URLS http://0.0.0.0:8100 ENTRYPOINT ["dotnet", "APT.UT.WebApi.dll"]