Sha256: ae6537a477adb20b9371b533bf0cf5f57ae175d8464e4541f0fcfb24622126c2

Contents?: true

Size: 511 Bytes

Versions: 16

Compression:

Stored size: 511 Bytes

Contents

FROM ruby:latest

MAINTAINER Brett McGinnis brett@l4digital.com

ARG BUILD_DIR="/build"
ARG ARTIFACTS_DIR="/artifacts"
ARG DROPBOX_ACCESS_TOKEN="PLEASE SET"
ARG BUILD_NUMBER="-1"

WORKDIR $BUILD_DIR

RUN apt-get update

RUN gem install bundler

ADD . ${BUILD_DIR}

WORKDIR ${BUILD_DIR}

RUN bundle install
RUN rake ci:setup:testunit test:default build

RUN mv test/reports ${ARTIFACTS_DIR}/
RUN mv pkg/* ${ARTIFACTS_DIR}/
RUN mkdir -p ${ARTIFACTS_DIR}/coverage/ && \
    mv coverage/* ${ARTIFACTS_DIR}/coverage/

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
jenkinsutil-1.0.55 Dockerfile
jenkinsutil-1.0.54 Dockerfile
jenkinsutil-1.0.53 Dockerfile
jenkinsutil-1.0.52 Dockerfile
jenkinsutil-1.0.50 Dockerfile
jenkinsutil-1.0.49 Dockerfile
jenkinsutil-0.8.48 Dockerfile
jenkinsutil-0.8.47 Dockerfile
jenkinsutil-0.8.46 Dockerfile
jenkinsutil-0.8.44 Dockerfile
jenkinsutil-0.8.43 Dockerfile
jenkinsutil-0.8.42 Dockerfile
jenkinsutil-0.8.40 Dockerfile
jenkinsutil-0.8.39 Dockerfile
jenkinsutil-0.8.38 Dockerfile
jenkinsutil-0.8.37 Dockerfile