Skip to content

Commit 23993a5

Browse files
Merge pull request #23 from TransactionProcessing/task/#22_net7upgrade
Update shared config and docker image to net 7
2 parents 30ba6d5 + 7a2e02e commit 23993a5

5 files changed

Lines changed: 2 additions & 8 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
22

33
WORKDIR /home/txnproc/
44
COPY ["/config", "config"]

DockerfileWindows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0-windowsservercore-ltsc2019 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:7.0-windowsservercore-ltsc2019 AS base
22

33
WORKDIR /home/txnproc/
44
COPY ["/config", "config"]

config/appsettings.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
"ClientId": "", // This will be overridden in each service/application
1313
"ClientSecret": "", // This will be overridden in each service/application
1414
"EstateManagementApi": "http://192.168.0.133:5000",
15-
"EstateReportingApi": "http://192.168.0.133:5005",
1615
"FileProcessorApi": "http://192.168.0.133:5009",
1716
"SecurityService": "https://192.168.0.133:5001",
18-
"VoucherManagementApi": "http://192.168.0.133:5007",
1917
"MessagingServiceApi": "http://192.168.0.133:5006",
2018
"TransactionProcessorApi": "http://192.168.0.133:5002",
2119
"HandlerEventTypesToSilentlyHandle": {}, // This will be overridden in each service/application

config/appsettings.preproduction.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
"ClientId": "", // This will be overridden in each service/application
1313
"ClientSecret": "", // This will be overridden in each service/application
1414
"EstateManagementApi": "http://192.168.0.134:5000",
15-
"EstateReportingApi": "http://192.168.0.134:5005",
1615
"FileProcessorApi": "http://192.168.0.134:5009",
1716
"SecurityService": "https://192.168.0.134:5001",
18-
"VoucherManagementApi": "http://192.168.0.134:5007",
1917
"MessagingServiceApi": "http://192.168.0.134:5006",
2018
"TransactionProcessorApi": "http://192.168.0.134:5002",
2119
"HandlerEventTypesToSilentlyHandle": {}, // This will be overridden in each service/application

config/appsettings.staging.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
"ClientId": "", // This will be overridden in each service/application
1313
"ClientSecret": "", // This will be overridden in each service/application
1414
"EstateManagementApi": "http://192.168.0.133:5000",
15-
"EstateReportingApi": "http://192.168.0.133:5005",
1615
"FileProcessorApi": "http://192.168.0.133:5009",
1716
"SecurityService": "https://192.168.0.133:5001",
18-
"VoucherManagementApi": "http://192.168.0.133:5007",
1917
"MessagingServiceApi": "http://192.168.0.133:5006",
2018
"TransactionProcessorApi": "http://192.168.0.133:5002",
2119
"HandlerEventTypesToSilentlyHandle": {}, // This will be overridden in each service/application

0 commit comments

Comments
 (0)