mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
add dockerized inspec
This commit is contained in:
parent
97040de0cc
commit
ce570d3e82
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
Loading…
Reference in a new issue