We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1006c commit c080bb4Copy full SHA for c080bb4
Dockerfile
@@ -1,8 +1,10 @@
1
-FROM python:3.10-slim
+FROM python:3.13-slim
2
3
COPY . /app
4
WORKDIR /app
5
6
+RUN apt-get update && apt-get install -y build-essential
7
+
8
RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
9
10
CMD ["pipenv", "run", "pytest"]
Pipfile
@@ -4,15 +4,15 @@ url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
-pytest-runner = "*"
-pytest = "*"
-vcrpy = "*"
pylint = "*"
+pytest = "*"
11
pytest-asyncio = "*"
+pytest-runner = "*"
+vcrpy = "*"
12
13
[packages]
14
-twilio = "==6.54.0"
+aiohttp = "*"
15
signalwire = {editable = true,path = "."}
16
-aiohttp = "3.9.5"
+twilio = "*"
17
18
[requires]
0 commit comments