Dmitry Beresnev commited on
Commit
6df4a0a
·
1 Parent(s): 3795647

fix dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -58,6 +58,6 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
58
 
59
  # Run the application when the container starts HF
60
  #CMD ["uvicorn", "src.telegram_bot:app", "--host", "0.0.0.0", "--port", "7860"]
61
- #CMD ["python", "main.py"]
62
  # Uncomment the line below to run the application locally
63
- CMD ["python", "-m", "telegram_bot"]
 
58
 
59
  # Run the application when the container starts HF
60
  #CMD ["uvicorn", "src.telegram_bot:app", "--host", "0.0.0.0", "--port", "7860"]
61
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
62
  # Uncomment the line below to run the application locally
63
+ #CMD ["python", "-m", "telegram_bot"]