Merge pull request #343 from coreos-inc/favicon
Add support for custom favicon in ER
This commit is contained in:
commit
4dfab5b8e2
2 changed files with 6 additions and 1 deletions
|
@ -38,7 +38,7 @@ ADD . .
|
||||||
# Run grunt
|
# Run grunt
|
||||||
RUN cd grunt && grunt
|
RUN cd grunt && grunt
|
||||||
|
|
||||||
ADD conf/init/copy_robots_txt.sh /etc/my_init.d/
|
ADD conf/init/copy_config_files.sh /etc/my_init.d/
|
||||||
ADD conf/init/doupdatelimits.sh /etc/my_init.d/
|
ADD conf/init/doupdatelimits.sh /etc/my_init.d/
|
||||||
ADD conf/init/copy_syslog_config.sh /etc/my_init.d/
|
ADD conf/init/copy_syslog_config.sh /etc/my_init.d/
|
||||||
ADD conf/init/runmigration.sh /etc/my_init.d/
|
ADD conf/init/runmigration.sh /etc/my_init.d/
|
||||||
|
|
|
@ -3,4 +3,9 @@
|
||||||
if [ -e /conf/stack/robots.txt ]
|
if [ -e /conf/stack/robots.txt ]
|
||||||
then
|
then
|
||||||
cp /conf/stack/robots.txt /static/robots.txt
|
cp /conf/stack/robots.txt /static/robots.txt
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e /conf/stack/favicon.ico ]
|
||||||
|
then
|
||||||
|
cp /conf/stack/favicon.ico /static/favicon.ico
|
||||||
fi
|
fi
|
Reference in a new issue