File tree Expand file tree Collapse file tree 6 files changed +14
-21
lines changed
WebCrawler.TrackerService Expand file tree Collapse file tree 6 files changed +14
-21
lines changed Original file line number Diff line number Diff line change 1
- #### 0.1.0 August 14 2017 ####
1
+ #### 0.2.0 Feb 06 2019 ####
2
+ Upgraded to .NET Core 2.1 for all services.
3
+
4
+ #### 0.1.0 Feb 04 2019 ####
2
5
First release
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- FROM microsoft/dotnet:2.0 -runtime AS base
1
+ FROM microsoft/dotnet:2.1 -runtime AS base
2
2
WORKDIR /app
3
3
4
4
# should be a comma-delimited list
@@ -9,7 +9,7 @@ ENV CLUSTER_PORT "5213"
9
9
# Akka.Remote inbound listening endpoint
10
10
EXPOSE 5213
11
11
12
- COPY ./bin/Release/netcoreapp2.0 /publish/ /app
12
+ COPY ./bin/Release/netcoreapp2.1 /publish/ /app
13
13
14
14
15
15
CMD ["dotnet" , "WebCrawler.CrawlService.dll" ]
Original file line number Diff line number Diff line change 1
- FROM microsoft/dotnet:2.0 -runtime AS base
1
+ FROM microsoft/dotnet:2.1 -runtime AS base
2
2
WORKDIR /app
3
3
4
4
# should be a comma-delimited list
@@ -9,6 +9,6 @@ ENV CLUSTER_PORT "5212"
9
9
# Akka.Remote inbound listening endpoint
10
10
EXPOSE 5212
11
11
12
- COPY ./bin/Release/netcoreapp2.0 /publish/ /app
12
+ COPY ./bin/Release/netcoreapp2.1 /publish/ /app
13
13
14
14
CMD ["dotnet" , "WebCrawler.TrackerService.dll" ]
Original file line number Diff line number Diff line change 1
- FROM microsoft/aspnetcore :2.0 AS base
1
+ FROM microsoft/dotnet :2.1-runtime AS base
2
2
WORKDIR /app
3
3
4
4
# should be a comma-delimited list
@@ -10,6 +10,6 @@ ENV CLUSTER_PORT "16666"
10
10
EXPOSE 80
11
11
EXPOSE 16666
12
12
13
- COPY ./bin/Release/netcoreapp2.0 /publish/ /app
13
+ COPY ./bin/Release/netcoreapp2.1 /publish/ /app
14
14
15
15
CMD ["dotnet" , "WebCrawler.Web.dll" ]
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <Copyright >Copyright © 2015-2018 Petabridge, LLC</Copyright >
3
+ <Copyright >Copyright © 2015-2019 Petabridge, LLC</Copyright >
4
4
<Authors >Petabridge</Authors >
5
- <VersionPrefix >0.1 .0</VersionPrefix >
6
- <PackageReleaseNotes >First release </PackageReleaseNotes >
5
+ <VersionPrefix >0.2 .0</VersionPrefix >
6
+ <PackageReleaseNotes >Upgraded to .NET Core 2.1 for all services. </PackageReleaseNotes >
7
7
<PackageIconUrl >
8
8
</PackageIconUrl >
9
9
<PackageProjectUrl >
18
18
<AkkaBootstrapVersion >0.2.0</AkkaBootstrapVersion >
19
19
<AkkaHealthCheckVersion >0.1.0</AkkaHealthCheckVersion >
20
20
<PetabridgeCmdVersion >0.4.1</PetabridgeCmdVersion >
21
- <NetCoreVersion >netcoreapp2.0 </NetCoreVersion >
21
+ <NetCoreVersion >netcoreapp2.1 </NetCoreVersion >
22
22
</PropertyGroup >
23
23
</Project >
You can’t perform that action at this time.
0 commit comments