mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
11 lines
206 B
Docker
11 lines
206 B
Docker
FROM ruby:alpine
|
|
RUN mkdir /share
|
|
RUN apk add --update \
|
|
build-base \
|
|
libxml2-dev \
|
|
libffi-dev
|
|
RUN gem install inspec --no-document
|
|
ENTRYPOINT ["inspec"]
|
|
CMD ["help"]
|
|
VOLUME ["/share"]
|
|
WORKDIR /share
|