Skip to content

Commit c75e9d9

Browse files
committed
add instruction on how to run rake package
1 parent 35787b9 commit c75e9d9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Rakefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,23 @@ end
101101
# rake package
102102
# - Just create directories and don't compress
103103
# rake package DIR_ONLY=1
104+
105+
# ## TO RUN with DOCKER
106+
# Start docker, mounting an empty folder called `output`:
107+
#
108+
# `docker run --rm -it -v $PWD/output:/gv ruby:2.2.10 /bin/bash`
109+
#
110+
# Then inside the shell:
111+
#
112+
# ```
113+
# apt update && apt install unzip && gem install bundler -v 1.17.3
114+
# cd /gv
115+
# git clone https://github.com/wurmlab/genevalidator
116+
# cd genevalidator
117+
# bundle install
118+
# rake package
119+
# ```
120+
104121
namespace :package do
105122
PLATFORMS.each do |platform|
106123
task platform => [

0 commit comments

Comments
 (0)