feat: add port mapping for Flask in Dockerfile to expose port 3004

This commit is contained in:
Manuel Weiser 2024-09-05 09:20:58 +02:00
parent cf4047a298
commit c6b3bc7662

View File

@ -7,4 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY game_collection .
CMD [ "flask", "run", "--host=0.0.0.0" ]
EXPOSE 3004
CMD [ "flask", "run", "--host=0.0.0.0", "--port=3004" ]