mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
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:
parent
db9b593998
commit
68d78fe535
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue