mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #1713 from jberggg/jdk11_docker_image
restserver docker image: set jdk17 for all platforms
This commit is contained in:
commit
7c0f9d057f
@ -1,17 +1,15 @@
|
||||
FROM alpine:3.14
|
||||
FROM alpine:3.16
|
||||
|
||||
ARG version=
|
||||
ARG restserver_url=
|
||||
ARG TARGETPLATFORM
|
||||
|
||||
RUN JDKPKG="openjdk11-jre"; \
|
||||
if [[ $TARGETPLATFORM = linux/arm* ]]; then JDKPKG="openjdk8-jre"; fi; \
|
||||
apk update && \
|
||||
apk add --no-cache $JDKPKG bash tzdata && \
|
||||
RUN apk update && \
|
||||
apk add --no-cache openjdk17-jre bash tzdata curl && \
|
||||
apk add 'zlib=1.2.12-r3'
|
||||
|
||||
WORKDIR /opt
|
||||
RUN wget ${restserver_url:-https://github.com/eikek/docspell/releases/download/v$version/docspell-restserver-$version.zip} && \
|
||||
RUN curl -L -O ${restserver_url:-https://github.com/eikek/docspell/releases/download/v$version/docspell-restserver-$version.zip} && \
|
||||
unzip docspell-restserver-*.zip && \
|
||||
rm docspell-restserver-*.zip && \
|
||||
ln -snf docspell-restserver-* docspell-restserver && \
|
||||
|
Loading…
x
Reference in New Issue
Block a user