AshDavid12 commited on
Commit
31f6961
·
1 Parent(s): 11e98c3

trying ivrit model-nvidia image

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -2
Dockerfile CHANGED
@@ -1,5 +1,15 @@
1
- # Use an official Python runtime as a base image
2
- FROM python:3.11.1-buster
 
 
 
 
 
 
 
 
 
 
3
 
4
  # Set the working directory
5
  WORKDIR /
 
1
+ FROM nvidia/cuda:12.2.2-cudnn8-runtime-ubuntu22.04
2
+
3
+ ENV PYTHON_VERSION=3.11
4
+
5
+ RUN export DEBIAN_FRONTEND=noninteractive \
6
+ && apt-get -qq update \
7
+ && apt-get -qq install --no-install-recommends \
8
+ python${PYTHON_VERSION} \
9
+ python${PYTHON_VERSION}-venv \
10
+ python3-pip \
11
+ libcublas11 \
12
+ && rm -rf /var/lib/apt/lists/*
13
 
14
  # Set the working directory
15
  WORKDIR /