Skip to content

Commit cff7a31

Browse files
upgraded all Dockerfiles and components to .NET Core 2.1 (#8)
1 parent 7546c15 commit cff7a31

File tree

6 files changed

+14
-21
lines changed

6 files changed

+14
-21
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
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 ####
25
First release

get-dockerip.sh

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/WebCrawler.CrawlService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:2.0-runtime AS base
1+
FROM microsoft/dotnet:2.1-runtime AS base
22
WORKDIR /app
33

44
# should be a comma-delimited list
@@ -9,7 +9,7 @@ ENV CLUSTER_PORT "5213"
99
#Akka.Remote inbound listening endpoint
1010
EXPOSE 5213
1111

12-
COPY ./bin/Release/netcoreapp2.0/publish/ /app
12+
COPY ./bin/Release/netcoreapp2.1/publish/ /app
1313

1414

1515
CMD ["dotnet", "WebCrawler.CrawlService.dll"]

src/WebCrawler.TrackerService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:2.0-runtime AS base
1+
FROM microsoft/dotnet:2.1-runtime AS base
22
WORKDIR /app
33

44
# should be a comma-delimited list
@@ -9,6 +9,6 @@ ENV CLUSTER_PORT "5212"
99
#Akka.Remote inbound listening endpoint
1010
EXPOSE 5212
1111

12-
COPY ./bin/Release/netcoreapp2.0/publish/ /app
12+
COPY ./bin/Release/netcoreapp2.1/publish/ /app
1313

1414
CMD ["dotnet", "WebCrawler.TrackerService.dll"]

src/WebCrawler.Web/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:2.0 AS base
1+
FROM microsoft/dotnet:2.1-runtime AS base
22
WORKDIR /app
33

44
# should be a comma-delimited list
@@ -10,6 +10,6 @@ ENV CLUSTER_PORT "16666"
1010
EXPOSE 80
1111
EXPOSE 16666
1212

13-
COPY ./bin/Release/netcoreapp2.0/publish/ /app
13+
COPY ./bin/Release/netcoreapp2.1/publish/ /app
1414

1515
CMD ["dotnet", "WebCrawler.Web.dll"]

src/common.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22
<PropertyGroup>
3-
<Copyright>Copyright © 2015-2018 Petabridge, LLC</Copyright>
3+
<Copyright>Copyright © 2015-2019 Petabridge, LLC</Copyright>
44
<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>
77
<PackageIconUrl>
88
</PackageIconUrl>
99
<PackageProjectUrl>
@@ -18,6 +18,6 @@
1818
<AkkaBootstrapVersion>0.2.0</AkkaBootstrapVersion>
1919
<AkkaHealthCheckVersion>0.1.0</AkkaHealthCheckVersion>
2020
<PetabridgeCmdVersion>0.4.1</PetabridgeCmdVersion>
21-
<NetCoreVersion>netcoreapp2.0</NetCoreVersion>
21+
<NetCoreVersion>netcoreapp2.1</NetCoreVersion>
2222
</PropertyGroup>
2323
</Project>

0 commit comments

Comments
 (0)