yashvshetty commited on
Commit
e618ecb
·
1 Parent(s): 7c581a4

Fix pip installing to wrong Python version

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -9,7 +9,7 @@ RUN ln -s /usr/bin/python3.11 /usr/bin/python
9
 
10
  WORKDIR /app
11
  COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  COPY . .
15
 
 
9
 
10
  WORKDIR /app
11
  COPY requirements.txt .
12
+ RUN python -m pip install --no-cache-dir -r requirements.txt
13
 
14
  COPY . .
15