Spaces:
Runtime error
Runtime error
update docker
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,11 @@ COPY ./install_deps.sh /code/install_deps.sh
|
|
| 16 |
# Make the install_deps.sh script executable
|
| 17 |
RUN chmod +x /code/install_deps.sh
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
# Run the install_deps.sh script
|
| 20 |
RUN /bin/bash /code/install_deps.sh
|
| 21 |
|
|
|
|
| 16 |
# Make the install_deps.sh script executable
|
| 17 |
RUN chmod +x /code/install_deps.sh
|
| 18 |
|
| 19 |
+
RUN pip install -U openmim
|
| 20 |
+
RUN mim install mmengine
|
| 21 |
+
RUN pip install mmcv==2.1.0 -f https://download.openmmlab.com/mmcv/dist/cu118/torch2.1/index.html
|
| 22 |
+
RUN pip install git+https://github.com/open-mmlab/mmdetection.git@v3.3.0
|
| 23 |
+
|
| 24 |
# Run the install_deps.sh script
|
| 25 |
RUN /bin/bash /code/install_deps.sh
|
| 26 |
|