Skip to content

Commit

Permalink
Update Dockerfile for Ruby 3.2 and pandoc 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
htdebeer committed Feb 4, 2023
1 parent 611a6de commit 5cc19a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ruby:3.1
FROM ruby:3.2
ENV LANG C.UTF-8
RUN apt-get update \
; apt-get install -y wget texlive-base \
; wget -q https://github.com/jgm/pandoc/releases/download/2.19.1/pandoc-2.19.1-1-amd64.deb \
; apt-get install ./pandoc-2.19.1-1-amd64.deb \
; wget -q https://github.com/jgm/pandoc/releases/download/3.0.1/pandoc-3.0.1-1-amd64.deb \
; apt-get install ./pandoc-3.0.1-1-amd64.deb \
; useradd -ms /bin/bash paru-user
USER paru-user
SHELL ["/bin/bash", "-l", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion lib/paru.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
#++
module Paru
# Paru's current version
VERSION = [1, 0, 3].freeze
VERSION = [1, 1, 0].freeze
end
2 changes: 1 addition & 1 deletion paru.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |s|
s.name = 'paru'
s.license = 'GPL-3.0'
s.version = Paru::VERSION.join "."
s.date = '2022-08-07'
s.date = '2023-02-04'
s.authors = ['Huub de Beer']
s.email = 'Huub@heerdebeer.org'

Expand Down

0 comments on commit 5cc19a7

Please sign in to comment.