Skip to content

Commit

Permalink
fione 14.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed May 5, 2022
1 parent d571e7f commit cdee098
Show file tree
Hide file tree
Showing 6 changed files with 2,360 additions and 5 deletions.
29 changes: 29 additions & 0 deletions 14.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
FROM ghcr.io/codelibs/python:3.9.12-focal as python

RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential && \
rm -rf /var/lib/apt/lists/*

COPY requirements.txt /tmp/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt

FROM ghcr.io/codelibs/fess:14.1.0

ENV LANG en_US.UTF-8
ENV PATH /usr/local/bin:$PATH
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
ENV DEBIAN_FRONTEND noninteractive

ARG FIONE_VERSION=14.1.0

COPY --from=python /usr/local /usr/local

ARG CACHEBUST=1
RUN set -x && \
curl -LfsSo /tmp/fione-${FIONE_VERSION}.deb \
https://github.com/codelibs/fione/releases/download/fione-${FIONE_VERSION}/fione-${FIONE_VERSION}.deb && \
dpkg -i /tmp/fione-${FIONE_VERSION}.deb && \
rm -rf /tmp/fione-${FIONE_VERSION}.deb && \
apt-get clean && rm -rf /var/lib/apt/lists/*

Loading

0 comments on commit cdee098

Please sign in to comment.