We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed3bbe commit 849b0a4Copy full SHA for 849b0a4
Dockerfile
@@ -6,7 +6,8 @@ FROM $IMAGE_VERSION
6
RUN apt-get update && apt-get upgrade -y \
7
&& apt-get install -y curl \
8
&& useradd -u 1000 -ms /bin/bash -d /home/python python \
9
- && mkdir -p /python && chown python:nogroup /python
+ && mkdir -p /python && chown python:nogroup /python \
10
+ && pip install requests
11
12
# Copy the needed files
13
COPY entrypoint.sh test_suite.sh /python/
tests/pyproject.toml
@@ -18,7 +18,6 @@ python = "^3.10"
18
fastapi = "0.75.2"
19
loguru = "0.6.0"
20
uvicorn = "^0.18.2"
21
-requests = "^2.28.1"
22
23
24
[tool.poetry.dev-dependencies]
0 commit comments