Refactoring and adding dockerfile.

master
Tomasz Półgrabia 2022-01-16 12:13:55 +01:00
parent b76257688b
commit a2ae9772cd
5 changed files with 83 additions and 75 deletions

View File

@ -0,0 +1,6 @@
FROM python:3.8-slim-buster
COPY ./src /app
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN python3 -m pip install -r /app/requirements.txt
CMD [ "python3", "/app/server.py" ]

View File

@ -18,9 +18,11 @@ class WebsocketHandler(tornado.websocket.WebSocketHandler):
print("Closed...") print("Closed...")
if __name__ == "__main__": if __name__ == "__main__":
print("Start of the server...")
application = tornado.web.Application([ application = tornado.web.Application([
(r"/", MainHandler), (r"/", MainHandler),
(r"/socket", WebsocketHandler), (r"/socket", WebsocketHandler),
]) ])
print("Starting to listen on port 8888")
application.listen(8888) application.listen(8888)
tornado.ioloop.IOLoop.current().start() tornado.ioloop.IOLoop.current().start()