Add build files to docker image

This commit is contained in:
Daniel_I_Am 2020-08-15 20:58:57 -04:00
parent 54ec61da12
commit 38116b7623

View File

@ -1,5 +1,7 @@
FROM mcr.microsoft.com/dotnet/core/sdk:3.0 FROM mcr.microsoft.com/dotnet/core/sdk:3.0
COPY "./build" "/App"
WORKDIR /App WORKDIR /App
CMD ["/usr/bin/dotnet" "Chaosbot.dll"] CMD ["/usr/bin/dotnet" "Chaosbot.dll"]