peppinob-ol commited on
Commit
3db40d5
·
1 Parent(s): cb8a7e5

Fix Dockerfile: correct requirements.txt path

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # Copy requirements first (for better caching)
17
- COPY requirements_hf.txt requirements.txt
18
 
19
  # Install Python dependencies
20
  RUN pip install --no-cache-dir -r requirements.txt
 
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # Copy requirements first (for better caching)
17
+ COPY requirements.txt requirements.txt
18
 
19
  # Install Python dependencies
20
  RUN pip install --no-cache-dir -r requirements.txt