Skip to content

Commit

Permalink
Merge pull request #232 from bolna-ai/fix-port-dockerfile
Browse files Browse the repository at this point in the history
#230: fix default ports for example telephony servers
  • Loading branch information
prateeksachan authored Jun 5, 2024
2 parents 555455b + cd89dfc commit 7a98e85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local_setup/dockerfiles/plivo_server.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ COPY ./telephony_server/plivo_api_server.py /app

RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 8001
EXPOSE 8002

CMD ["uvicorn", "plivo_api_server:app", "--host", "0.0.0.0", "--port", "8002"]
2 changes: 1 addition & 1 deletion local_setup/dockerfiles/twilio_server.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ COPY ./telephony_server/twilio_api_server.py /app

RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 8002
EXPOSE 8001

CMD ["uvicorn", "twilio_api_server:app", "--host", "0.0.0.0", "--port", "8001"]

0 comments on commit 7a98e85

Please sign in to comment.