vamshf commited on
Commit
f424555
·
verified ·
1 Parent(s): 753a3fc

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.9-slim
5
  WORKDIR /app
6
 
7
  # Copy the requirements file and install dependencies first to leverage Docker cache
8
- COPY backend_requirements.txt .
9
- RUN pip install --no-cache-dir -r backend_requirements.txt
10
 
11
  # Copy the rest of the application files
12
  COPY . .
 
5
  WORKDIR /app
6
 
7
  # Copy the requirements file and install dependencies first to leverage Docker cache
8
+ COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  # Copy the rest of the application files
12
  COPY . .