Spaces:
Sleeping
Sleeping
sachin
commited on
Commit
·
634a4dd
1
Parent(s):
6a2d9d9
fix build
Browse files- 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
|
16 |
-
RUN pip install --no-cache-dir -r
|
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 |
|