13 lines
356 B
Docker
13 lines
356 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet
|
|
EXPOSE 80
|
|
|
|
# VOLUME [ "/app/appsettings.Production.json", "/app/botsettings.yml" ]
|
|
|
|
WORKDIR /app
|
|
COPY ./Theresa3rd-Bot /app
|
|
RUN ls
|
|
|
|
# RUN dotnet TheresaBot.MiraiHttpApi.dll --launch-profile Production --urls http://0.0.0.0:80
|
|
CMD dotnet TheresaBot.MiraiHttpApi.dll --launch-profile Production --urls http://0.0.0.0:80
|
|
|