summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-03-30 10:59:39 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-04-01 00:04:14 +0200
commit5ff1d6955496b3cf9a35042c9ac35db43bc336b1 (patch)
tree6d470f7eb448f59f53e8df1010aec9dad8ce1f72 /tesseract/Dockerfile
parentImport Ghostscript 9.53.1 (diff)
downloadghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.tar.gz
ghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.tar.bz2
ghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.zip
Import Ghostscript 9.54ghostscript-9.54
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'tesseract/Dockerfile')
-rw-r--r--tesseract/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tesseract/Dockerfile b/tesseract/Dockerfile
new file mode 100644
index 00000000..78155863
--- /dev/null
+++ b/tesseract/Dockerfile
@@ -0,0 +1,17 @@
+# Dockerfile for local Travis build test
+
+FROM ubuntu
+LABEL maintainer="Ian Blenke <ian@blenke.com>"
+
+RUN apt-get update
+RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cmake curl git ruby bundler wget unzip \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*
+RUN gem install bundler travis -no-ri -no-rdoc
+RUN git clone --depth 1 https://github.com/travis-ci/travis-build ~/.travis/travis-build
+RUN bundle install --gemfile ~/.travis/travis-build/Gemfile
+
+ADD . /tesseract
+WORKDIR /tesseract
+
+RUN travis compile | sed -e "s/--branch\\\=\\\'\\\'/--branch=master/g" | bash