mirror of
https://github.com/inspec/inspec
synced 2024-11-15 01:17:08 +00:00
12 lines
206 B
Docker
12 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
|