ajayvikram commited on
Commit
76d8a69
·
verified ·
1 Parent(s): 355f423

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,5 +7,5 @@ COPY requirements.txt /app/requirements.txt
7
  WORKDIR /app
8
 
9
  # Install the Python packages from requirements.txt
10
- RUN pip install -r requirements.txt
11
  CMD pip uninstall -y autotrain-advanced && pip install -U autotrain-advanced && uvicorn autotrain.app:app --host 0.0.0.0 --port 7860 --reload --workers 4
 
7
  WORKDIR /app
8
 
9
  # Install the Python packages from requirements.txt
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
  CMD pip uninstall -y autotrain-advanced && pip install -U autotrain-advanced && uvicorn autotrain.app:app --host 0.0.0.0 --port 7860 --reload --workers 4