Spaces:
Running
Running
upgrade
Browse files- Dockerfile +2 -0
- requirements.txt +1 -3
Dockerfile
CHANGED
@@ -5,6 +5,8 @@ FROM python:3.11
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
ENV MAX_JOBS=8
|
|
|
|
|
8 |
|
9 |
COPY ./requirements.txt /code/requirements.txt
|
10 |
COPY ./pre-requirements.txt /code/pre-requirements.txt
|
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
ENV MAX_JOBS=8
|
8 |
+
pip install --upgrade setuptools wheel
|
9 |
+
|
10 |
|
11 |
COPY ./requirements.txt /code/requirements.txt
|
12 |
COPY ./pre-requirements.txt /code/pre-requirements.txt
|
requirements.txt
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
|
2 |
-
|
3 |
git+https://github.com/facebookresearch/[email protected]
|
4 |
-
git+https://github.com/facebookresearch/detectron2.git
|
5 |
-
|
|
|
1 |
|
|
|
2 |
git+https://github.com/facebookresearch/[email protected]
|
3 |
+
git+https://github.com/facebookresearch/detectron2.git
|
|