mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-11 18:35:18 +00:00
Consolidate redundant dependency list
This commit is contained in:
parent
a0f53d23af
commit
85bc307186
1 changed files with 2 additions and 2 deletions
|
|
@ -1,9 +1,9 @@
|
|||
FROM python:3.10 as base
|
||||
|
||||
WORKDIR /app
|
||||
RUN pip install pip setuptools --upgrade
|
||||
ADD pyproject.toml .
|
||||
RUN pip install . && rm pyproject.toml
|
||||
ADD requirements.txt .
|
||||
RUN pip install . && rm pyproject.toml requirements.txt
|
||||
ENV PYTHONPATH=/app
|
||||
|
||||
FROM base as github_app
|
||||
|
|
|
|||
Loading…
Reference in a new issue