From 3afd34a19fbb64be295062a98ed31aff510acdaa Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Fri, 31 May 2019 12:53:59 -0500 Subject: [PATCH] added v0.1.1 release notes (#30) (#31) --- RELEASE_NOTES.md | 3 +++ src/Akka.CQRS.TradePlacers.Service/Dockerfile | 4 ++-- src/Akka.CQRS.TradeProcessor.Service/Dockerfile | 4 +--- src/common.props | 5 ++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 80d3725c..1eb6ddb1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 0.1.1 May 31 2019 #### +*Reorganized trader and trade-processor Dockerfiles to comport with Docker best practices. + #### 0.1.0 May 26 2019 #### * Fixed `NullReferenceException` when recovering `MatchAggregatorSnapshot` records with no price and volume updates. * Fixed issue with BSON serialization for `MatchAggregatorSnapshot` records. \ No newline at end of file diff --git a/src/Akka.CQRS.TradePlacers.Service/Dockerfile b/src/Akka.CQRS.TradePlacers.Service/Dockerfile index 22448e55..29052881 100644 --- a/src/Akka.CQRS.TradePlacers.Service/Dockerfile +++ b/src/Akka.CQRS.TradePlacers.Service/Dockerfile @@ -6,8 +6,6 @@ ENV CLUSTER_SEEDS "[]" ENV CLUSTER_IP "" ENV CLUSTER_PORT "5054" -COPY ./bin/Release/netcoreapp2.1/publish/ /app - # 9110 - Petabridge.Cmd # 5055 - Akka.Cluster EXPOSE 9110 5054 @@ -20,4 +18,6 @@ ENV PATH="${PATH}:/root/.dotnet/tools" # RUN pbm help +COPY ./bin/Release/netcoreapp2.1/publish/ /app + CMD ["dotnet", "Akka.CQRS.TradePlacers.Service.dll"] \ No newline at end of file diff --git a/src/Akka.CQRS.TradeProcessor.Service/Dockerfile b/src/Akka.CQRS.TradeProcessor.Service/Dockerfile index 3429fbbb..0dda131e 100644 --- a/src/Akka.CQRS.TradeProcessor.Service/Dockerfile +++ b/src/Akka.CQRS.TradeProcessor.Service/Dockerfile @@ -7,8 +7,6 @@ ENV CLUSTER_IP "" ENV CLUSTER_PORT "5055" ENV MONGO_CONNECTION_STR "" #MongoDb connection string for Akka.Persistence -COPY ./bin/Release/netcoreapp2.1/publish/ /app - # 9110 - Petabridge.Cmd # 5055 - Akka.Cluster EXPOSE 9110 5055 @@ -19,6 +17,6 @@ RUN dotnet tool install --global pbm # Needed because https://stackoverflow.com/questions/51977474/install-dotnet-core-tool-dockerfile ENV PATH="${PATH}:/root/.dotnet/tools" -# RUN pbm help +COPY ./bin/Release/netcoreapp2.1/publish/ /app CMD ["dotnet", "Akka.CQRS.TradeProcessor.Service.dll"] \ No newline at end of file diff --git a/src/common.props b/src/common.props index 45f415c3..50c5ae24 100644 --- a/src/common.props +++ b/src/common.props @@ -2,9 +2,8 @@ Copyright © 2017 Your Company Your Authors - 0.1.0 - Fixed `NullReferenceException` when recovering `MatchAggregatorSnapshot` records with no price and volume updates. -Fixed issue with BSON serialization for `MatchAggregatorSnapshot` records. + 0.1.1 + Reorganized trader and trade-processor Dockerfiles to comport with Docker best practices.