We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35787b9 commit c75e9d9Copy full SHA for c75e9d9
Rakefile
@@ -101,6 +101,23 @@ end
101
# rake package
102
# - Just create directories and don't compress
103
# 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
121
namespace :package do
122
PLATFORMS.each do |platform|
123
task platform => [
0 commit comments