14 lines
321 B
Docker
14 lines
321 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet
|
|
EXPOSE 80
|
|
|
|
WORKDIR /app
|
|
COPY ./Theresa3rd-Bot /app
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
RUN echo 'Asia/Shanghai' >/etc/timezone
|
|
|
|
ENV DOTNET_RUNNING_IN_CONTAINER true
|
|
|
|
CMD dotnet TheresaBot.MiraiHttpApi.dll --launch-profile Production --urls http://0.0.0.0:80
|
|
|