Skip to content

Commit ea7f037

Browse files
Merge pull request #145 from FocoosAI/fix/tensorrt-image
fix: update tensorrt dockerfile to use cu12-cudnn9-py312-uv-tensorrt image
2 parents e08d750 + 4431fa6 commit ea7f037

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,6 @@ site/
9898
notebooks/test.ipynb
9999
gradio/output/
100100
tutorials/experiments
101+
experiments/
102+
notebooks/
103+
wandb/

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,11 @@ COPY pyproject.toml ./pyproject.toml
2020
RUN uv pip install --system -e .[onnx]
2121

2222

23-
FROM focoos-gpu AS focoos-tensorrt
24-
RUN uv pip install --system -e .[tensorrt]
23+
FROM ghcr.io/focoosai/deeplearning:cu12-cudnn9-py312-uv-tensorrt AS focoos-tensorrt
24+
LABEL authors="focoos.ai"
25+
26+
WORKDIR /app
27+
28+
COPY focoos ./focoos
29+
COPY pyproject.toml ./pyproject.toml
30+
RUN uv pip install --system -e .[onnx,tensorrt]

0 commit comments

Comments
 (0)