Skip to content

Commit

Permalink
change port usage from 80 to 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
melippmann committed Nov 14, 2023
1 parent d7fb7d5 commit 882fbea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ USER node
COPY . .

# Expose the port that the application listens on.
EXPOSE 80
EXPOSE 8080

# Run the application.
CMD node app.js
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const express = require('express')
const app = express()
const port = 80
const port = 8080
const hostname='localhost'

var jsonObj = {
Expand Down

0 comments on commit 882fbea

Please sign in to comment.