Add pytest and requests to embedding_service Dockerfile

Include test dependencies in Docker image for testing.
This commit is contained in:
Benoit Chesneau 2026-03-23 13:37:02 +01:00
parent 241c479701
commit af8897a14c

View File

@ -6,7 +6,9 @@ WORKDIR /app
RUN pip install --no-cache-dir \
sentence-transformers \
fastapi \
pydantic
pydantic \
pytest \
requests
# Copy gunicorn source
COPY . /app/gunicorn-src