aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile2
-rw-r--r--boot.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 6b34919..4e4b5ca 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -33,5 +33,5 @@ ENV FLASK_APP annotate_change.py
RUN chown -R annotate_change:annotate_change ./
USER annotate_change
-EXPOSE 5000
+EXPOSE 80
ENTRYPOINT ["./boot.sh"]
diff --git a/boot.sh b/boot.sh
index 9d50eef..9f6a220 100644
--- a/boot.sh
+++ b/boot.sh
@@ -6,5 +6,5 @@ poetry shell
# Run database migrations
flask db upgrade
-exec gunicorn -b :5000 --access-logfile - --error-logfile - annotate_change:app
+exec gunicorn -b :80 --access-logfile - --error-logfile - annotate_change:app