回答編集履歴

1

Add expression

2020/09/18 17:28

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -55,3 +55,15 @@
55
55
 
56
56
 
57
57
  `wget` でなく `curl` や `git` でも構いません
58
+
59
+ Docker イメージのレイヤーが増えますが、`ADD` を使うと上記のコマンドなしでも設定できます:
60
+
61
+
62
+
63
+ ```docker
64
+
65
+ ADD https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh /usr/bin/wait-for-it
66
+
67
+ RUN chmod +x /usr/bin/wait-for-it
68
+
69
+ ```