mirror of
https://github.com/anthonyraymond/joal.git
synced 2024-11-10 09:02:31 +08:00
32 lines
894 B
Docker
32 lines
894 B
Docker
# Builder image with jdk
|
|
FROM --platform=$BUILDPLATFORM maven:3.6-jdk-8 AS build
|
|
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y git \
|
|
&& JOAL_VERSION="2.1.17" \
|
|
&& git clone https://github.com/anthonyraymond/joal.git --branch "$JOAL_VERSION" --depth=1 \
|
|
&& cd joal \
|
|
&& mvn --batch-mode --quiet package -DskipTests=true \
|
|
&& mkdir /artifact \
|
|
&& mv "/joal/target/jack-of-all-trades-$JOAL_VERSION.jar" /artifact/joal.jar \
|
|
&& apt-get remove -y git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
# Actual joal image with jre only
|
|
FROM openjdk:8u181-jre
|
|
|
|
LABEL name="joal"
|
|
LABEL maintainer="joal.contact@gmail.com"
|
|
LABEL url="https://github.com/anthonyraymond/joal"
|
|
LABEL vcs-url="https://github.com/anthonyraymond/joal"
|
|
|
|
WORKDIR /joal/
|
|
|
|
COPY --from=build /artifact/joal.jar /joal/joal.jar
|
|
|
|
VOLUME /data
|
|
|
|
ENTRYPOINT ["java","-jar","/joal/joal.jar"]
|
|
CMD ["--joal-conf=/data"]
|