From b68546b0e778a34702014be0596d1c309f84d8ee Mon Sep 17 00:00:00 2001 From: H4CK3R-01 Date: Mon, 25 Apr 2022 17:12:00 +0200 Subject: [PATCH] Try to fix Dockerfiles --- telegram_bot/Dockerfile.bot | 2 +- telegram_bot/Dockerfile.updates | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/telegram_bot/Dockerfile.bot b/telegram_bot/Dockerfile.bot index 0f2e57e..8b5922f 100644 --- a/telegram_bot/Dockerfile.bot +++ b/telegram_bot/Dockerfile.bot @@ -11,4 +11,4 @@ RUN pip install -r requirements.txt --src /usr/local/src --no-warn-script-locati COPY telegram_bot /srv/flask_app # Run the application -CMD ["python bot.py"] +CMD ["/usr/local/bin/python bot.py"] diff --git a/telegram_bot/Dockerfile.updates b/telegram_bot/Dockerfile.updates index 66d3898..37c5a0a 100644 --- a/telegram_bot/Dockerfile.updates +++ b/telegram_bot/Dockerfile.updates @@ -11,4 +11,4 @@ RUN pip install -r requirements.txt --src /usr/local/src --no-warn-script-locati COPY telegram_bot /srv/flask_app # Run the application -CMD ["python bot_updates.py"] +CMD ["/usr/local/bin/python bot_updates.py"]