File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 4
4
Gemfile.lock
5
5
.project
6
6
.buildpath
7
+ vendor /
7
8
* ~
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ RUN apt-get install -y \
34
34
libxslt-dev \
35
35
libxml2-dev \
36
36
zlib1g-dev \
37
- libidn11-dev
37
+ libidn11-dev \
38
+ pandoc \
39
+ vim-nox
38
40
39
41
ENV PATH $PATH:/opt/rakudo-pkg/bin
40
42
RUN install-zef
@@ -44,19 +46,24 @@ RUN zef install Pod::To::HTML2
44
46
RUN curl -L http://cpanmin.us | perl - App::cpanminus
45
47
RUN cpanm --installdeps --notest Pod::Simple
46
48
49
+ RUN apt-get purge ruby -y
50
+
47
51
# Install Rbenv and Ruby
48
52
RUN git clone https://github.com/rbenv/rbenv.git ~/.rbenv && echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc && echo 'eval "$(rbenv init -)"' >> ~/.bashrc
49
53
RUN git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
50
54
ENV PATH $PATH:/root/.rbenv/bin:/root/.rbenv/shims
51
55
RUN cd /root/.rbenv/plugins/ruby-build && git pull && cd -
52
56
ENV RUBY_VERSION 3.3.0
57
+ RUN rbenv install -l
53
58
RUN rbenv install $RUBY_VERSION && rbenv global $RUBY_VERSION && rbenv rehash
59
+ RUN rbenv install --list-all
54
60
RUN echo 'gem: --no-rdoc --no-ri' >> /.gemrc
61
+ RUN gem install rubygems-update && update_rubygems
55
62
RUN gem install bundler:2.4.22
56
63
57
64
RUN bundle config --global build.nokogiri --use-system-libraries
58
65
59
- RUN dpkg -i https://github.com/jgm/pandoc/releases/download/3.1.12.1/pandoc-3.1.12.1-linux -amd64.tar.gz
66
+ # RUN dpkg -i https://github.com/jgm/pandoc/releases/download/3.1.12.1/pandoc-3.1.12.1-1 -amd64.deb
60
67
61
68
WORKDIR /data/github-markup
62
69
COPY github-markup.gemspec .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ gem "posix-spawn", :platforms => :ruby
6
6
gem "redcarpet" , :platforms => :ruby
7
7
gem "kramdown" , :platforms => :jruby
8
8
gem "RedCloth"
9
- gem "commonmarker" , "= 1.0.4"
9
+ gem "commonmarker" , "~> 1.0.4"
10
10
gem 'rdoc' , '~> 6.6' , '>= 6.6.2'
11
11
gem 'org-ruby' , '~> 0.9.12'
12
12
gem 'creole' , '~> 0.5.0'
You can’t perform that action at this time.
0 commit comments