d_sms_service/APT.MicroApi/APT.OP.WebApi/Dockerfile
2024-10-28 13:45:58 +08:00

7 lines
265 B
Docker

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
#ENV ASPNETCORE_ENVIRONMENT Production
ENV ASPNETCORE_URLS http://0.0.0.0:8100
ENTRYPOINT ["dotnet", "APT.OP.WebApi.dll"]