docspell/docker/joex.dockerfile

22 lines
477 B
Plaintext
Raw Normal View History

FROM eikek0/docspell:joex-base-latest
2020-03-30 22:45:43 +00:00
LABEL maintainer="eikek0 <eike@docspell.org>"
RUN apk add --no-cache openjdk11-jre \
unzip \
bash \
curl \
&& mkdir -p /opt \
&& cd /opt \
2020-09-09 20:08:17 +00:00
&& curl -L -o docspell.zip https://github.com/eikek/docspell/releases/download/v0.11.1/docspell-joex-0.11.1.zip \
2020-03-30 22:45:43 +00:00
&& unzip docspell.zip \
&& rm docspell.zip \
&& apk del curl unzip
2020-09-09 20:08:17 +00:00
2020-03-30 22:45:43 +00:00
COPY entrypoint-joex.sh /opt/entrypoint.sh
2020-03-30 22:45:43 +00:00
EXPOSE 7878
ENTRYPOINT ["/opt/entrypoint.sh"]