Rockk08 commited on
Commit
4b6ecd4
·
1 Parent(s): c99721b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -11
Dockerfile CHANGED
@@ -1,12 +1,5 @@
1
- # Use an official CUDA image as the base image
2
- FROM nvidia/cuda:11.4.1-cudnn8-runtime-ubuntu20.04
3
-
4
- # Install Python and pip
5
- RUN apt-get update && \
6
- apt-get install -y python3.9 python3-pip
7
-
8
- # Install NumPy and GRPCIO
9
- RUN pip3 install --no-cache-dir --upgrade numpy grpcio
10
 
11
  # Set the working directory in the container
12
  WORKDIR /code
@@ -14,8 +7,8 @@ WORKDIR /code
14
  # Copy the requirements file
15
  COPY ./requirements.txt /code/requirements.txt
16
 
17
- # Install dependencies
18
- RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt
19
 
20
  # Copy the application files to the container
21
  COPY . .
 
1
+ # Use Hugging Face's transformers image as the base image
2
+ FROM transformers:4.11.3-gpu
 
 
 
 
 
 
 
3
 
4
  # Set the working directory in the container
5
  WORKDIR /code
 
7
  # Copy the requirements file
8
  COPY ./requirements.txt /code/requirements.txt
9
 
10
+ # Install additional dependencies
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
  # Copy the application files to the container
14
  COPY . .