Use port 8000 instead of 8080

This commit is contained in:
jeltz 2021-03-16 01:36:47 +01:00
parent 220873ae79
commit c398980cdb

View file

@ -17,5 +17,5 @@ COPY . /var/www/kanbot/
# Move the rigth directory
WORKDIR /var/www/kanbot
EXPOSE 8080
ENTRYPOINT /usr/bin/python3 /var/www/kanbot/bot.py --host 0.0.0.0 --port 8080
EXPOSE 8000
ENTRYPOINT python3 /var/www/kanbot/bot.py --host 0.0.0.0 --port 8000