syntaxhacker commited on
Commit ·
25ecf85
1
Parent(s): cdab93b
fix: switch preciz dependency to main branch (cli-sdk no longer exists)
Browse files- Dockerfile +0 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,6 @@ WORKDIR /app
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
COPY scripts/ scripts/
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt && \
|
| 11 |
-
python scripts/patch_preciz.py && \
|
| 12 |
python -c "import site; import shutil; shutil.copy('scripts/utils_shim.py', f'{site.getsitepackages()[0]}/utils.py')" && \
|
| 13 |
rm -rf scripts
|
| 14 |
|
|
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
COPY scripts/ scripts/
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt && \
|
|
|
|
| 11 |
python -c "import site; import shutil; shutil.copy('scripts/utils_shim.py', f'{site.getsitepackages()[0]}/utils.py')" && \
|
| 12 |
rm -rf scripts
|
| 13 |
|
requirements.txt
CHANGED
|
@@ -8,4 +8,4 @@ uvicorn>=0.31.0
|
|
| 8 |
openai>=1.57.0
|
| 9 |
python-dotenv>=1.0.1
|
| 10 |
pydantic>=2.10.4
|
| 11 |
-
preciz @ git+https://github.com/syntaxhacker/preciz-agent.git@
|
|
|
|
| 8 |
openai>=1.57.0
|
| 9 |
python-dotenv>=1.0.1
|
| 10 |
pydantic>=2.10.4
|
| 11 |
+
preciz @ git+https://github.com/syntaxhacker/preciz-agent.git@main
|