docker and app
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -9,16 +9,19 @@ RUN pip install torch==1.9.1 torchvision==0.10.1 -f https://download.pytorch.org
|
|
| 9 |
RUN pip install -U openmim
|
| 10 |
RUN mim install "mmcv>=2.0.1"
|
| 11 |
RUN mim install mmengine
|
|
|
|
| 12 |
RUN git clone https://github.com/open-mmlab/mmpose.git
|
|
|
|
| 13 |
|
| 14 |
# Change directory to mmpose
|
| 15 |
RUN cd mmpose
|
|
|
|
| 16 |
RUN pip install -r requirements.txt
|
| 17 |
RUN pip install -e .
|
| 18 |
|
| 19 |
# How do we change it back with ..
|
| 20 |
RUN cd ..
|
| 21 |
-
RUN mim install "mmpose>=1.1.0"
|
| 22 |
|
| 23 |
RUN pip install gradio
|
| 24 |
|
|
|
|
| 9 |
RUN pip install -U openmim
|
| 10 |
RUN mim install "mmcv>=2.0.1"
|
| 11 |
RUN mim install mmengine
|
| 12 |
+
|
| 13 |
RUN git clone https://github.com/open-mmlab/mmpose.git
|
| 14 |
+
#COPY . /whatever
|
| 15 |
|
| 16 |
# Change directory to mmpose
|
| 17 |
RUN cd mmpose
|
| 18 |
+
RUN pwd
|
| 19 |
RUN pip install -r requirements.txt
|
| 20 |
RUN pip install -e .
|
| 21 |
|
| 22 |
# How do we change it back with ..
|
| 23 |
RUN cd ..
|
| 24 |
+
# RUN mim install "mmpose>=1.1.0"
|
| 25 |
|
| 26 |
RUN pip install gradio
|
| 27 |
|