-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CxAnalytixDaemon added docker changes * CxAnalytixDaemon lowering log level * Moved out docker file into root * Adding circle ci changes for the docker * Update base storage path to be empty to avoid linux specific error on initial run Co-authored-by: Sergiy Koyev <[email protected]> Co-authored-by: Ken McDonald <[email protected]>
- Loading branch information
1 parent
8a4b655
commit 9392131
Showing
5 changed files
with
52 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 | ||
COPY ./ App/ | ||
WORKDIR /App | ||
RUN ln -s dotnet.exe.config dotnet.config | ||
ENTRYPOINT ["dotnet", "CxAnalytixDaemon.dll"] |