diff --git a/Dockerfile b/Dockerfile index 3988012..ba94890 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,8 @@ FROM $IMAGE_VERSION RUN apt-get update && apt-get upgrade -y \ && apt-get install -y curl \ && useradd -u 1000 -ms /bin/bash -d /home/python python \ - && mkdir -p /python && chown python:nogroup /python + && mkdir -p /python && chown python:nogroup /python \ + && pip install requests # Copy the needed files COPY entrypoint.sh test_suite.sh /python/ diff --git a/tests/pyproject.toml b/tests/pyproject.toml index 3af0e51..5f6a6e8 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -18,7 +18,6 @@ python = "^3.10" fastapi = "0.75.2" loguru = "0.6.0" uvicorn = "^0.18.2" -requests = "^2.28.1" [tool.poetry.dev-dependencies]