docker-davos/Dockerfile
2016-11-14 16:37:22 +00:00

23 lines
421 B
Docker
Raw 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.

FROM lsiobase/alpine
MAINTAINER Josh Stark <jagfin1@gmail.com>
# add davos app
COPY build/libs/davos-2.0.0.jar /app/davos/davos.jar
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# install packages
RUN \
apk add --no-cache \
openjdk8-jre
# add local files
COPY root/ /
# ports and volumes
EXPOSE 8080
VOLUME /config /download