您好我试图了解如何在Dockerfile中添加配置命令但到目前为止我没有取得任何好结果。 我写了这一行
RUN sed -i 'EnableSendfile Off' /etc/httpd/conf/httpd.conf
如何正确的版本?
非常感谢
答案 0 :(得分:2)
我想知道sed命令是否像你写下来一样有效。
RUN sed -i -e 's/this/that/g' filename
工作正常,所以可能
RUN sed -i -e 's/EnableSendfile On/EnableSendfile Off/g' /etc/httpd/conf/httpd.conf
您有什么样的结果或错误?