質問編集履歴

3

タイトル修正

2021/06/27 08:54

投稿

shishi_maru440
shishi_maru440

スコア38

test CHANGED
@@ -1 +1 @@
1
- Dockerイメージをビルドする時にエラー発生[ During handling of the above exception, another exception occurred: ]
1
+ Docker】Dockerfileからイメージをビルドする時にエラー発生
test CHANGED
File without changes

2

文法の修正

2021/06/27 08:53

投稿

shishi_maru440
shishi_maru440

スコア38

test CHANGED
@@ -1 +1 @@
1
- Dockerでmediapipeのイメージを作成できない
1
+ Dockerでイメージをビルドする時にエラー発生[ During handling of the above exception, another exception occurred: ]
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- Dockerでmediapipeのイメージ作成からコンテナ起動までを実現したい。
5
+ Dockerでmediapipeのイメージのビルドからコンテナ起動までを実現したい。
6
6
 
7
7
  mediapipeのビルドは下記を参考。
8
8
 
@@ -16,11 +16,25 @@
16
16
 
17
17
  ```
18
18
 
19
- Unable to find image 'mediapipe:latest' locally
19
+ During handling of the above exception, another exception occurred:
20
+
21
+
22
+
20
-
23
+ Traceback (most recent call last):
24
+
25
+ File "/usr/lib/python3/dist-packages/pip/req/req_install.py", line 82, in __init__
26
+
27
+ req = Requirement(req)
28
+
21
- docker: Error response from daemon: pull access denied for mediapipe, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
29
+ File "/usr/share/python-wheels/packaging-17.1-py2.py3-none-any.whl/packaging/requirements.py", line 97, in __init__
22
-
30
+
23
- See 'docker run --help'.
31
+ requirement_string[e.loc:e.loc + 8]))
32
+
33
+ pip._vendor.packaging.requirements.InvalidRequirement: Invalid requirement, parse error at "'=='"
34
+
35
+
36
+
37
+ The command '/bin/sh -c pip3 install six == 1.14.0' returned a non-zero code: 1
24
38
 
25
39
  ```
26
40
 
@@ -36,7 +50,7 @@
36
50
 
37
51
  cd mediapipe
38
52
 
39
- docker build --tag=mediapipe .
53
+ docker build -t dc_mediapipe /Users/440h/mediapipe/
40
54
 
41
55
  ```
42
56
 
@@ -44,7 +58,7 @@
44
58
 
45
59
  ここでエラー発生
46
60
 
47
- docker run -it --name mediapipe mediapipe:latest
61
+ docker build -t dc_mediapipe /Users/440h/mediapipe/
48
62
 
49
63
  ```
50
64
 
@@ -186,8 +200,6 @@
186
200
 
187
201
  ```
188
202
 
189
- ![イメージ説明](a5c32e5707b08ae38ef0abbf930fc093.png)
190
-
191
203
 
192
204
 
193
205
  ### 試したこと

1

文法の修正

2021/06/27 08:47

投稿

shishi_maru440
shishi_maru440

スコア38

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
 
5
5
  Dockerでmediapipeのイメージ作成からコンテナ起動までを実現したい。
6
+
7
+ mediapipeのビルドは下記を参考。
8
+
9
+ https://google.github.io/mediapipe/getting_started/install.html#installing-using-docker
6
10
 
7
11
 
8
12