Skip to content

Commit 849b0a4

Browse files
authored
Add requests package to facilitate CICD (#363)
1 parent eed3bbe commit 849b0a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ FROM $IMAGE_VERSION
66
RUN apt-get update && apt-get upgrade -y \
77
&& apt-get install -y curl \
88
&& useradd -u 1000 -ms /bin/bash -d /home/python python \
9-
&& mkdir -p /python && chown python:nogroup /python
9+
&& mkdir -p /python && chown python:nogroup /python \
10+
&& pip install requests
1011

1112
# Copy the needed files
1213
COPY entrypoint.sh test_suite.sh /python/

tests/pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ python = "^3.10"
1818
fastapi = "0.75.2"
1919
loguru = "0.6.0"
2020
uvicorn = "^0.18.2"
21-
requests = "^2.28.1"
2221

2322

2423
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)