回答編集履歴

2

Add second expression

2020/08/08 14:30

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -32,6 +32,18 @@
32
32
 
33
33
 
34
34
 
35
+ Dockerfile の通りに実行すると、Apache の実行バイナリーは次の位置となるでしょう:
36
+
37
+
38
+
39
+ ```bash
40
+
41
+ /opt/httpd/httpd-2.4.46/bin/httpd
42
+
43
+ ```
44
+
45
+
46
+
35
47
  また、Dockerfile の中で cd を単体で使っても効果はありません
36
48
 
37
49
 

1

Add expression

2020/08/08 14:30

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -53,3 +53,11 @@
53
53
 
54
54
 
55
55
  参考: [WORKDIR | Dockerfile reference | Docker Documentation](https://docs.docker.com/engine/reference/builder/#workdir)
56
+
57
+
58
+
59
+ 念のため、ご存知かもしれませんが、Apache は Docker Hub に公式イメージがありますので、
60
+
61
+ なるべくイメージを自作しなくてよい要件定義にした方がメリットが大きいです
62
+
63
+ [httpd Tags - Docker Hub](https://hub.docker.com/_/httpd?tab=tags&page=1&name=2.4.43)