Sha256: 6c56406105f6b8e545b64ff40495911084fbd1bb5cdb2c1fbb62a996d319d980
Contents?: true
Size: 655 Bytes
Versions: 26
Compression:
Stored size: 655 Bytes
Contents
FROM lsegal/samus:latest as samus FROM ruby:2 ARG VERSION ENV VERSION=${VERSION} WORKDIR /github/lsegal/yard ENTRYPOINT samus publish release-v${VERSION}.tar.gz # Prepare credential config RUN mkdir -p ~/.ssh RUN echo "Host *" > ~/.ssh/config RUN echo " StrictHostKeyChecking no" >> ~/.ssh/config RUN chmod 400 ~/.ssh/config COPY ./.samusprep/.samus /root/.samus COPY ./.samusprep/.gitconfig /root/.gitconfig # Setup Samus ENV PATH=$PATH:/samus/bin COPY --from=samus /samus /samus # Install gems ENV BUNDLE_PATH=/var/gems COPY Gemfile /github/lsegal/yard RUN bundle # Run build COPY . /github/lsegal/yard RUN samus build --skip-restore ${VERSION}
Version data entries
26 entries across 26 versions & 4 rubygems