nilanjanadevc commited on
Commit
c659659
·
verified ·
1 Parent(s): 03763aa

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ FROM python:3.10-slim
5
  WORKDIR /app
6
 
7
  # Copy the requirements file and install dependencies
8
- COPY /deployment_files/requirements.txt .
9
- RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  # Copy the application code
12
  COPY app.py .
 
5
  WORKDIR /app
6
 
7
  # Copy the requirements file and install dependencies
8
+ COPY /requirements.txt .
9
+ RUN pip3 install --no-cache-dir -r requirements.txt
10
 
11
  # Copy the application code
12
  COPY app.py .