Fix Docker build in the Expeditor pipeline (#2432)

The new ruby:alpine image already has a /share directory, so our
attempt to create one is breaking the Docker builds. This change
updates the Dockerfile to try to make the /share directory but silently
fail if it's already there.

Signed-off-by: Adam Leff <adam@leff.co>
This commit is contained in:
Adam Leff 2018-01-02 13:12:33 -05:00 committed by GitHub
parent db9b593998
commit 68d78fe535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ MAINTAINER Chef Software, Inc. <docker@chef.io>
ARG VERSION=1.48.0
ARG GEM_SOURCE=https://rubygems.org
RUN mkdir /share
RUN mkdir -p /share
RUN apk add --update build-base libxml2-dev libffi-dev && \
gem install --no-document --source ${GEM_SOURCE} --version ${VERSION} inspec && \
apk del build-base