You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
519 B
17 lines
519 B
#FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
|
#WORKDIR /app
|
|
#EXPOSE 80
|
|
#EXPOSE 443
|
|
#
|
|
#COPY . .
|
|
##拷贝字体
|
|
#COPY /wwwroot/Captcha/Font/zkkht.ttf /usr/share/fonts/zkkht.ttf
|
|
##安装libgdiplus
|
|
#RUN apt-get update -y && apt-get install -y libgdiplus && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll
|
|
#ENTRYPOINT ["dotnet", "GDZZ.Web.Entry.dll"]
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:7.0
|
|
WORKDIR /app
|
|
EXPOSE 80
|
|
COPY publish/ .
|
|
ENTRYPOINT ["dotnet", "GDZZ.Web.Entry.dll","--urls","http://*:5000"] |