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.
16 lines
395 B
16 lines
395 B
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 5005
|
|
|
|
COPY . .
|
|
|
|
# 设置语言/区域设置环境变量
|
|
ENV LANG zh-Hans
|
|
|
|
# 使用阿里云的镜像源进行更新
|
|
RUN sed -i 's/deb.debian.org/mirrors.aliyun.com/' /etc/apt/sources.list
|
|
|
|
# 更新包管理器并安装free命令
|
|
RUN apt-get update && apt-get install -y procps
|
|
|
|
ENTRYPOINT ["dotnet", "Admin.NET.Web.Entry.dll"]
|