You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ubooquity/Dockerfile

42 lines
804 B

FROM lsiobase/alpine:3.6
8 years ago
MAINTAINER sparklyballs
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# package version
7 years ago
ARG UBOOQUITY_VER="2.1.1"
8 years ago
# install build packages
8 years ago
RUN \
apk add --no-cache --virtual=build-dependencies \
curl \
unzip && \
# install runtime packages
8 years ago
apk add --no-cache \
openjdk8-jre-base && \
# install ubooquity
8 years ago
mkdir -p \
/app/ubooquity && \
8 years ago
curl -o \
/tmp/ubooquity.zip -L \
"http://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VER}.zip" && \
unzip /tmp/ubooquity.zip -d /app/ubooquity && \
8 years ago
# cleanup
8 years ago
apk del --purge \
build-dependencies && \
rm -rf \
/tmp/*
# copy local files
8 years ago
COPY root/ /
# ports and volumes
EXPOSE 2202 2203
8 years ago
VOLUME /books /comics /config /files