Skip to content

Commit

Permalink
To update docker file to node version 18 (#598)
Browse files Browse the repository at this point in the history
Fixes #597
  • Loading branch information
PrathibaJee authored Jul 24, 2024
1 parent 6b31bf3 commit d55e769
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions server/database/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,7 @@
"http-server-interface-1-0:http-server-interface-pac": {
"http-server-interface-capability": {
"application-name": "RegistryOffice",
"release-number": "2.1.0",
"release-number": "2.1.1",
"application-purpose": "All applications being part of the MW SDN must register here.",
"data-update-period": "http-server-interface-1-0:DATA_UPDATE_PERIOD_TYPE_REAL_TIME",
"owner-name": "Thorsten Heinze",
Expand Down Expand Up @@ -1503,7 +1503,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "NewRelease",
"release-number": "2.1.0"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -1799,7 +1799,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "RegistryOffice",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -2095,7 +2095,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "TypeApprovalRegister",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -2367,7 +2367,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "ExecutionAndTraceLog",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -2638,7 +2638,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "OamLog",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -2909,7 +2909,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "AdministratorAdministration",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -3330,7 +3330,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "ApplicationLayerTopology",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down Expand Up @@ -3576,7 +3576,7 @@
"http-client-interface-1-0:http-client-interface-pac": {
"http-client-interface-configuration": {
"application-name": "OperationKeyManagement",
"release-number": "2.0.1"
"release-number": "2.1.1"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions server/dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14
FROM node:18

# Create app directory
WORKDIR /home/openbackhaul/registryOffice
Expand All @@ -13,7 +13,7 @@ RUN npm ci --only=production
# Bundle app source
COPY . .

EXPOSE 3000
EXPOSE 3024

#Command to start the application
CMD [ "node", "index.js" ]

0 comments on commit d55e769

Please sign in to comment.