Skip to content

Commit

Permalink
Upgrade Twilio (among all dependencies)
Browse files Browse the repository at this point in the history
Bumps dockerfile to python:3.11-slim
  • Loading branch information
bnjmn committed Jan 3, 2025
1 parent 635ece3 commit 21bf4b5
Show file tree
Hide file tree
Showing 4 changed files with 1,023 additions and 810 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM python:3.10-slim
FROM python:3.11-slim

COPY . /app
WORKDIR /app

RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
RUN pip install --upgrade pip && pip install pipenv
# RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev

CMD ["pipenv", "run", "pytest"]
# CMD ["pipenv", "run", "pytest"]
10 changes: 5 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest-runner = "*"
pytest = "*"
vcrpy = "*"
pylint = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-runner = "*"
vcrpy = "*"

[packages]
twilio = "==6.54.0"
signalwire = {editable = true,path = "."}
aiohttp = "*"
signalwire = {editable = true,path = "."}
twilio = "*"

[requires]
Loading

0 comments on commit 21bf4b5

Please sign in to comment.