Browse Source

Rename groupme driver

Kirk Trombley 3 years ago
parent
commit
d6d2e1b197
2 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile.groupme
  2. 0 0
      drivers/groupme_driver.py

+ 2 - 2
Dockerfile.groupme

@@ -22,8 +22,8 @@ COPY ./commands/ /app/commands
 
 RUN pip3 install -e /app/commands
 
-COPY ./drivers/groupme.py .
+COPY ./drivers/groupme_driver.py .
 
 RUN pip3 install uvicorn fastapi toml
 
-CMD uvicorn groupme:app --host 0.0.0.0 --port 5000 --root-path /rollbot
+CMD uvicorn groupme_driver:app --host 0.0.0.0 --port 5000 --root-path /rollbot

+ 0 - 0
drivers/groupme.py → drivers/groupme_driver.py