remove port 5000 and use std 80, and use traefik to route correctly

This commit is contained in:
2024-08-25 22:44:32 +10:00
parent 4721c9dbbd
commit ad99be57e4

View File

@@ -6,5 +6,5 @@ RUN chown $USERID:$GROUPID /code
#RUN apt-get update && apt-get -y install python3-pip && apt-get -y dist-upgrade
COPY . .
RUN pip3 install -r requirements.txt
EXPOSE 5000
EXPOSE 80
CMD ["./wrapper.sh"]