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.
10 lines
241 B
10 lines
241 B
# 使用运行时镜像
|
|
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
# 把目录下的内容都复制到当前目录下
|
|
COPY . .
|
|
# 暴露80端口
|
|
EXPOSE 80
|
|
# 运行镜像入口命令和可执行文件名称
|
|
ENTRYPOINT ["dotnet", "Win_in.Sfs.Wms.Pda.Host.dll"]
|
|
|