Made changes to allow internet access

This commit is contained in:
Dan Dembinski
2020-03-06 14:05:09 -05:00
parent e76ab4c74b
commit 56b84fea08
2 changed files with 3 additions and 3 deletions

4
docker
View File

@@ -7,4 +7,6 @@ ADD requirements.txt /
RUN pip install -r ./requirements.txt RUN pip install -r ./requirements.txt
CMD ["python", "./main.py"] export FLASK_APP=main.py
flask run --host=0.0.0.0

View File

@@ -56,6 +56,4 @@ def updateFeeds(userID):
y = y + 1 y = y + 1
showCheck = [] # Clear out the array for the next podcast showCheck = [] # Clear out the array for the next podcast
if __name__ == "__main__":
app.run(debug=True)