Files
douyin/Dockerfile-arm
T
2025-11-25 00:04:45 +08:00

14 lines
387 B
Plaintext

#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal-arm64v8 AS base
WORKDIR /app
EXPOSE 10101
COPY . .
ENV ASPNETCORE_URLS=http://*:10101
ENV TZ=Asia/Shanghai
ENV DOWN_IMGVIDEO=0
ENTRYPOINT ["dotnet", "dy.net.dll"]