mirror of
https://github.com/morgan9e/chatgpt-web
synced 2026-04-13 16:04:05 +09:00
10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
FROM python:3.10-slim-buster
|
|
WORKDIR /work
|
|
|
|
RUN pip install fastapi uvicorn lorem-text
|
|
COPY mocked_api/mock_api.py .
|
|
COPY mocked_api/models_response.json .
|
|
|
|
CMD ["uvicorn", "mock_api:app", "--host", "0.0.0.0", "--port", "5174"]
|
|
|