Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:

AllCops:
TargetRubyVersion: 2.3
CacheRootDirectory: .rubocop_cache
CacheRootDirectory: /tmp/rubocop_cache
MaxFilesInCache: 1000

Style/ReturnNil:
Expand Down
2 changes: 1 addition & 1 deletion build_docs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def standard_docker_args():
raise ArgError("This process isn't likely to suceed if run as root")
docker_args.extend(['--user', '%d:%d' % (uid, getgid())])
# Mount the docs build code so we can run it!
docker_args.extend(['-v', '%s:/docs_build:cached' % DIR])
docker_args.extend(['-v', '%s:/docs_build:ro,cached' % DIR])
# Seccomp adds a *devestating* performance overhead if you happen
# to have it installed.
docker_args.extend(['--security-opt', 'seccomp=unconfined'])
Expand Down