Skip to content

Commit 21bf4b5

Browse files
committed
Upgrade Twilio (among all dependencies)
Bumps dockerfile to python:3.11-slim
1 parent 635ece3 commit 21bf4b5

File tree

4 files changed

+1023
-810
lines changed

4 files changed

+1023
-810
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
COPY . /app
44
WORKDIR /app
55

6-
RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
6+
RUN pip install --upgrade pip && pip install pipenv
7+
# RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
78

8-
CMD ["pipenv", "run", "pytest"]
9+
# CMD ["pipenv", "run", "pytest"]

Pipfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7-
pytest-runner = "*"
8-
pytest = "*"
9-
vcrpy = "*"
107
pylint = "*"
8+
pytest = "*"
119
pytest-asyncio = "*"
10+
pytest-runner = "*"
11+
vcrpy = "*"
1212

1313
[packages]
14-
twilio = "==6.54.0"
15-
signalwire = {editable = true,path = "."}
1614
aiohttp = "*"
15+
signalwire = {editable = true,path = "."}
16+
twilio = "*"
1717

1818
[requires]

0 commit comments

Comments
 (0)