Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deployment/dockerhub/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ COPY . /app

RUN python -m pip install --upgrade pip
RUN python -m pip install uv
RUN uv pip install torch --index-url https://download.pytorch.org/whl/cpu --system
RUN uv pip install -r requirements/requirements-all.txt --no-cache-dir --system

CMD ["uvicorn", "pephub.main:app", "--host", "0.0.0.0", "--port", "80"]
1 change: 1 addition & 0 deletions deployment/dockerhub/primary.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ COPY . /app

RUN python -m pip install --upgrade pip
RUN python -m pip install uv
RUN uv pip install torch --index-url https://download.pytorch.org/whl/cpu --system
RUN uv pip install -r requirements/requirements-all.txt --no-cache-dir --system

CMD ["uvicorn", "pephub.main:app", "--host", "0.0.0.0", "--port", "80"]
2 changes: 1 addition & 1 deletion pephub/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.5"
__version__ = "0.15.6"
3 changes: 2 additions & 1 deletion requirements/requirements-all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ fastembed>=0.7.4
numpy>2.0.0
slowapi
cachetools>=4.2.4
# bedms>=0.2.0
# bedms>=0.2.0
sentence-transformers>=5.2.0
Loading