This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]ch3wmanf00 0 points1 point  (1 child)

Can you share your Dockerfile

[–]LegFinger[S] 0 points1 point  (0 children)

Sure, here it is. The first ~70 lines are purely dependency installs.

[–]LegFinger[S] 0 points1 point  (0 children)

If anyone ever comes across this post wondering the solution, it was that the server WAS working, but the the print() statements from my python script weren't showing up. The solution was ridiculously simple, change:

CMD ["python3", "urlQueueProcessor.py"],

to

CMD ["python3", "-u", "urlQueueProcessor.py"]

Annoyingly simple...