dockerfile: move comment onto newline
comments on ADD commands break Docker!
This commit is contained in:
parent
887a14b366
commit
5188b9854d
1 changed files with 3 additions and 1 deletions
|
@ -92,11 +92,13 @@ ADD conf/init/copy_syslog_config.sh /etc/my_init.d/
|
|||
ADD conf/init/create_certs.sh /etc/my_init.d/
|
||||
ADD conf/init/runmigration.sh /etc/my_init.d/
|
||||
ADD conf/init/syslog-ng.conf /etc/syslog-ng/
|
||||
ADD conf/init/logrotate.conf /etc/logrotate.conf # remove after phusion/baseimage-docker#338 is fixed
|
||||
ADD conf/init/zz_boot.sh /etc/my_init.d/
|
||||
ADD conf/init/service/ /etc/service/
|
||||
RUN rm -rf /etc/service/syslog-forwarder
|
||||
|
||||
# remove after phusion/baseimage-docker#338 is fixed
|
||||
ADD conf/init/logrotate.conf /etc/logrotate.conf
|
||||
|
||||
# Download any external libs.
|
||||
RUN mkdir static/fonts static/ldn
|
||||
ADD external_libraries.py external_libraries.py
|
||||
|
|
Reference in a new issue