Skip to content

Commit

Permalink
Merging pull request #193 from fga-gpp-mds/expose_80
Browse files Browse the repository at this point in the history
  • Loading branch information
alaxalves authored Nov 27, 2017
2 parents 2622e7d + a5cd397 commit 3c77ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ RUN rm -rf ./test
RUN rm -rf ./src
RUN chmod +x start-homolog.sh

EXPOSE 80

ENTRYPOINT ["./start-homolog.sh"]
2 changes: 1 addition & 1 deletion express-prod-server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const express = require('express');

const app = express();
const port = process.env.PORT || 5000;
const port = process.env.PORT || 80;
const router = express.Router();

app.use(express.static(`${__dirname}/dist`));
Expand Down

0 comments on commit 3c77ce0

Please sign in to comment.