24小时一体机服务
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.

26 lines
505 B

# 选择从什么镜像基础上创建我们的镜像,相当于选择我们依赖的环境
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
LABEL description=""
LABEL version="1.0"
# 指定工作目录
WORKDIR /app
# 把当前目录复制到镜像的 app目录
COPY . .
#时区设置
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
# 暴露的端口
#EXPOSE 80
EXPOSE 8098
ENV ASPNETCORE_URLS=http://+:8098
ENV ASPNETCORE_ENVIRONMENT Production
# 最后设置启动的dll
ENTRYPOINT ["dotnet", "24Hour.dll"]