This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Base image used as starter | |
FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04 | |
# Install necessary dependencies | |
RUN apt-get update && \ | |
apt-get upgrade -y && \ | |
apt-get install -y \ | |
python3-pip \ | |
git \ | |
ffmpeg \ |
OlderNewer