Skip to content
Open
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
5 changes: 4 additions & 1 deletion application/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ RUN echo "Removing non-redistributable CUDA components per NVIDIA EULA..." && \
-name "libnvperf_host.so*" -o \
-name "libnvperf_target.so*" -o \
-name "libpcsamplingutil.so*" \
\) -path "*cupti*" -delete 2>/dev/null || true && \
\) -delete 2>/dev/null || true && \
# Remove cuSolver MG libraries (enterprise feature)
find $SEARCH_PATHS -name "libcusolverMg.so*" -delete 2>/dev/null || true && \
# Remove Triton NVIDIA backends (development components)
Expand Down Expand Up @@ -239,6 +239,9 @@ WORKDIR /app/application/backend
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --extra xpu

# CUDA EULA Compliance Cleanup
RUN find /app/application/backend/.venv -type d -path "*/triton/backends/nvidia" -exec rm -rf {} + 2>/dev/null || true

EXPOSE 8000

# nosemgrep: dockerfile.security.missing-user.missing-user # will fix later
Expand Down