sachin commited on
Commit
634a4dd
·
1 Parent(s): 6a2d9d9
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y \
12
  && ln -s /usr/bin/python3 /usr/bin/python \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
- COPY cpu-requirements.txt .
16
- RUN pip install --no-cache-dir -r cpu-requirements.txt
17
 
18
  COPY . .
19
 
 
12
  && ln -s /usr/bin/python3 /usr/bin/python \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
+ COPY requirements.txt .
16
+ RUN pip install --no-cache-dir -r requirements.txt
17
 
18
  COPY . .
19