move to py3

This commit is contained in:
herz 2022-03-14 16:23:08 +01:00
parent 83b7eb6ac3
commit cfa9e875d2
2 changed files with 3 additions and 3 deletions

View File

@ -95,8 +95,8 @@ def get_faceit_data(steamid_64):
if __name__ == "__main__":
app.run(host="127.0.0.1", port=8080, debug=True)
#serve(app, host='0.0.0.0', port=8080)
#app.run(host="127.0.0.1", port=8080, debug=True)
serve(app, host='0.0.0.0', port=8080)

View File

@ -14,6 +14,6 @@ RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python" ]
ENTRYPOINT [ "python3" ]
CMD [ "main.py" ]