Fix version specified in mocked Dockerfile

This commit is contained in:
Niek van der Maas
2024-08-21 14:02:19 +02:00
parent daf0b85a70
commit 8b1a2d46d1

View File

@@ -1,7 +1,7 @@
FROM python:3-alpine
WORKDIR /work
RUN pip install "fastapi<1.0" "uvicorn<0.22" "lorem-text<=2.1.x"
RUN pip install "fastapi<1.0" "uvicorn<0.22" "lorem-text<=2.1"
COPY mocked_api/mock_api.py .
COPY mocked_api/models_response.json .