docker-shellcheck/Dockerfile
sparklyballs 3965a7c2e6 blah
2016-11-05 01:53:22 +00:00

17 lines
342 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 alpine:3.4
MAINTAINER sparklyballs
# copy files from jenkins builder job
COPY package/bin/shellcheck /usr/local/bin/
COPY package/lib/ /usr/local/lib/
# load lib files
RUN \
ldconfig /usr/local/lib
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"