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"]