From e1ac4679b501d2387dbf4560e7db4d3a803a302a Mon Sep 17 00:00:00 2001 From: Ant Date: Sat, 13 Aug 2022 10:55:53 -0700 Subject: [PATCH] Add requests package to facilitate CICD --- Dockerfile | 3 ++- tests/pyproject.toml | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) 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]