File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
44 projectType : container
55 language : container
66 attributes :
7- alpha.dockerimage-port : 8080
7+ alpha.dockerimage-port : 8081
88 version : 1.0.0
99 provider : Red Hat
1010components :
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN npm install --only=production
1717COPY . .
1818
1919# Configure and document the service HTTP port.
20- ENV PORT 8080
20+ ENV PORT 8081
2121EXPOSE $PORT
2222
2323# Run the web service on container startup.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const http = require('http');
22const Users = require ( './users' ) ;
33
44const host = process . env . HOST || '127.0.0.1'
5- const port = process . env . PORT || 8080
5+ const port = process . env . PORT || 8081
66
77function handleGetReq ( req , res ) {
88 if ( req . url !== '/users' ) {
You can’t perform that action at this time.
0 commit comments