Skip to content

Commit

Permalink
reverting port back to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwamegh committed Oct 15, 2023
1 parent 557bd5a commit 132e8a8
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 @@ -8,6 +8,6 @@ RUN npm install

COPY . .

EXPOSE 8080
EXPOSE 3000

CMD [ "node", "./bin/www" ]
2 changes: 1 addition & 1 deletion bin/www
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var http = require("http");
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || "8080");
var port = normalizePort(process.env.PORT || "3000");
app.set("port", port);

/**
Expand Down

0 comments on commit 132e8a8

Please sign in to comment.