Skip to content

Instantly share code, notes, and snippets.

View fvisconti's full-sized avatar

francesco visconti fvisconti

  • Mangrovia Blockchain Solutions
  • Rome
  • 11:20 (UTC +02:00)
View GitHub Profile
@fvisconti
fvisconti / Dockerfile
Created April 26, 2024 09:01
Dockerfile for TensorRT-LLM
# Since procedures to install TensorRT-LLM such as
# here: https://nvidia.github.io/TensorRT-LLM/installation/linux.html
# or here: https://developer.nvidia.com/blog/optimizing-inference-on-llms-with-tensorrt-llm-now-publicly-available/
# suffer more than an issue,
# I share my Dockerfile to have it built as a docker image locally
# First stage for building dependencies with a slim Python base
FROM python:3.10-slim-bullseye AS build-deps
RUN apt-get update && apt-get install -y --no-install-recommends \