fixed docker

master
git 2021-02-11 12:29:38 +01:00
parent 60e93ab74c
commit 2029aadbfb
2 changed files with 2 additions and 2 deletions

View File

@ -5,4 +5,4 @@ WORKDIR /code/
RUN pip install -r /code/requirements.txt
CMD ["python","src/api.py"]
CMD ["python","src/app.py"]

View File

@ -52,5 +52,5 @@ def wakeup():
if __name__ == '__main__':
config = configparser.ConfigParser(interpolation=None)
config.read('config.ini')
config.read('../config.ini')
app.run(host='0.0.0.0')