mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-01 19:30:40 +08:00
11 lines
255 B
Docker
11 lines
255 B
Docker
FROM python:3.10 as base
|
|
|
|
WORKDIR /app
|
|
ADD requirements.txt .
|
|
RUN pip install -r requirements.txt && rm requirements.txt
|
|
ENV PYTHONPATH=/app
|
|
ADD pr_agent pr_agent
|
|
ADD github_action/entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|