Spaces:
Runtime error
Runtime error
Commit
·
0dd5e07
1
Parent(s):
5654039
PORTS
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -33,7 +33,8 @@ RUN make install
|
|
33 |
# /usr/local/apache2/conf/httpd.conf
|
34 |
|
35 |
RUN ls -la /usr/local/apache2/bin
|
|
|
36 |
RUN cat /usr/local/apache2/conf/httpd.conf
|
37 |
RUN /usr/local/apache2/bin/apachectl start
|
38 |
|
39 |
-
CMD [ "bash","-c", "/usr/local/apache2/bin/apachectl start; curl localhost; tail -F error.log" ]
|
|
|
33 |
# /usr/local/apache2/conf/httpd.conf
|
34 |
|
35 |
RUN ls -la /usr/local/apache2/bin
|
36 |
+
RUN sed -i 's/Listen 80/Listen 7860/' /some/file/some/where.txt
|
37 |
RUN cat /usr/local/apache2/conf/httpd.conf
|
38 |
RUN /usr/local/apache2/bin/apachectl start
|
39 |
|
40 |
+
CMD [ "bash","-c", "/usr/local/apache2/bin/apachectl start; curl localhost:7860; tail -F error.log" ]
|