Prevent the dockerfile from building if the ADD behavior for symlinks ever changes to a recursive copy.
This commit is contained in:
parent
22cc7a85d4
commit
b1d08dce55
1 changed files with 4 additions and 1 deletions
|
@ -57,7 +57,10 @@ ADD alembic.ini alembic.ini
|
|||
|
||||
# Add the config
|
||||
ADD conf conf
|
||||
RUN rm -rf /conf/stack
|
||||
|
||||
# This command must be rm -f (not -rf) to fail in case stack is ever a dir,
|
||||
# which may contain secrets
|
||||
RUN rm -f /conf/stack
|
||||
|
||||
ADD conf/init/svlogd_config /svlogd_config
|
||||
ADD conf/init/preplogsdir.sh /etc/my_init.d/
|
||||
|
|
Reference in a new issue