I am a doubt about how to use a sed command for change default values in osticket app. I am using a docker file for changing the default value, but I am using wrong wall.
Below my dockerfile code:
cd /osticket && \
mv /osticket/__download__/upload/* /osticket && \
sed -i -E 's/%CONFIG-DBHOST/ip/' ./upload/include/ost-config.php
sed -i -E 's/%CONFIG-DBNAME/dbname/' ./upload/include/ost-config.php
sed -i -E 's/%CONFIG-DBUSER/username/' ./upload/include/ost-config.php
sed -i -E 's/%CONFIG-DBPASS=password/' ./upload/include/ost-config.php
rm -fr /osticket/__download__
When I run docker build, show me the message
error response from daemon: dockerfile parse error line 39: unknown instruction: SED