setuagrawal commited on
Commit
94c3708
·
verified ·
1 Parent(s): 90e08df

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -6,6 +6,8 @@ WORKDIR /app
6
  # Copy all files from the current directory to the container's working directory
7
  COPY . .
8
 
 
 
9
  # Install dependencies from the requirements file without using cache to reduce image size
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
 
6
  # Copy all files from the current directory to the container's working directory
7
  COPY . .
8
 
9
+ RUN ls -la
10
+ RUN pip install --upgrade pip
11
  # Install dependencies from the requirements file without using cache to reduce image size
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13