broken-source==0.3.3.dev0
Browse files- Dockerfile +4 -0
- requirements.txt +2 -1
Dockerfile
CHANGED
@@ -27,6 +27,10 @@ RUN apt-get update && apt-get install -y \
|
|
27 |
COPY requirements.txt .
|
28 |
RUN pip install --no-cache-dir -r requirements.txt
|
29 |
|
|
|
|
|
|
|
|
|
30 |
COPY . /app
|
31 |
WORKDIR /app
|
32 |
|
|
|
27 |
COPY requirements.txt .
|
28 |
RUN pip install --no-cache-dir -r requirements.txt
|
29 |
|
30 |
+
# Install a release version of `broken-source` wheel
|
31 |
+
RUN python3 -m pip install broken-source==0.3.3.dev0
|
32 |
+
|
33 |
+
|
34 |
COPY . /app
|
35 |
WORKDIR /app
|
36 |
|
requirements.txt
CHANGED
@@ -3,4 +3,5 @@ pydantic
|
|
3 |
requests
|
4 |
Pillow
|
5 |
numpy
|
6 |
-
aiofiles
|
|
|
|
3 |
requests
|
4 |
Pillow
|
5 |
numpy
|
6 |
+
aiofiles
|
7 |
+
torch
|