docker-davos/Dockerfile
2025-01-27 17:24:16 +00:00

56 lines
1.4 KiB
Docker
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# syntax=docker/dockerfile:1
FROM openjdk:8-alpine AS buildstage
ARG DAVOS_RELEASE
RUN \
echo "**** Install build requirements ****" && \
apk add \
bash \
curl \
jq && \
echo "**** Download Davos ****" && \
if [ -z ${DAVOS_RELEASE+x} ]; then \
DAVOS_RELEASE=$(curl -sX GET https://api.github.com/repos/linuxserver/davos/releases/latest \
| jq -r '. | .tag_name'); \
fi && \
curl -o \
/tmp/davos.tar.gz -L \
"https://github.com/linuxserver/davos/archive/${DAVOS_RELEASE}.tar.gz" && \
echo "**** Build Davos For Release ****" && \
mkdir -p \
/app/davos/ && \
tar xf \
/tmp/davos.tar.gz -C \
/app/davos/ --strip-components=1 && \
cd /app/davos/ && \
./gradlew -Penv=release clean build && \
echo "**** Copy Finished Jar ****" && \
cp build/libs/*.jar /davos.jar && \
chmod 755 /davos.jar
FROM ghcr.io/linuxserver/baseimage-alpine:3.21
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="JAGFin1,Thelamer"
# install packages
RUN \
apk add --no-cache \
nss \
openjdk8-jre \
sqlite-libs && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version
# copy files from build stage and local files
COPY --from=buildstage /davos.jar /app/davos/davos.jar
COPY root/ /
# ports and volumes
EXPOSE 8080
WORKDIR /app/davos
VOLUME /config