add tabula

This commit is contained in:
kev 2021-01-08 12:19:35 +08:00
parent 68d06a3038
commit ff6e498e0e
4 changed files with 41 additions and 0 deletions

View File

@ -192,6 +192,7 @@ A collection of delicious docker recipes.
- [x] phpvirtualbox-arm
- [x] piwik
- [x] revive
- [x] tabula
- [x] tiddlywiki
- [x] zoneminder :+1:

27
tabula/Dockerfile Normal file
View File

@ -0,0 +1,27 @@
#
# Dockerfile for tabula
#
FROM jruby:9.2-jdk
MAINTAINER EasyPi Software Foundation
RUN apt-get update -qq && apt-get install -y build-essential curl \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN echo 'gem: --no-rdoc --no-ri' >> /.gemrc
ENV GEM_HOME=/usr/local/bundle
ENV PATH=$GEM_HOME/bin:$PATH
RUN gem install bundler -v '< 2' \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
# don't create ".bundle" in all our apps
ENV BUNDLE_APP_CONFIG=$GEM_HOME
WORKDIR /app
# these didn't work as ONBUILD, strangely. Idk why. -JBM
RUN curl -sSL https://github.com/tabulapdf/tabula/archive/master.tar.gz | tar xz --strip 1
RUN bundle install && jruby -S jbundle install
EXPOSE 9292
CMD ["jruby", "-G", "-r", "jbundler", "-S", "rackup", "-o", "0.0.0.0", "config.ru"]

6
tabula/README.md Normal file
View File

@ -0,0 +1,6 @@
tabula
======
[Tabula][1] is a tool for liberating data tables trapped inside PDF files.
[1]: http://tabula.technology/

View File

@ -0,0 +1,7 @@
version: "3.8"
services:
tabula:
image: vimagick/tabula
ports:
- "9292:9292"
restart: unless-stopped