10 lines
189 B
Docker
10 lines
189 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet
|
|
EXPOSE 80
|
|
|
|
WORKDIR /app
|
|
COPY ./Theresa3rd-Bot /app
|
|
RUN ls
|
|
|
|
CMD dotnet TheresaBot.MiraiHttpApi.dll --launch-profile Production --urls http://0.0.0.0:80
|
|
|