mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
7 lines
155 B
Docker
7 lines
155 B
Docker
|
FROM python:3.9
|
||
|
|
||
|
RUN pip install httpx PyGithub "pydantic==2.0.2" pydantic-settings "pyyaml>=5.3.1,<6.0.0"
|
||
|
|
||
|
COPY ./app /app
|
||
|
|
||
|
CMD ["python", "/app/main.py"]
|