mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
14 lines
229 B
Docker
14 lines
229 B
Docker
|
FROM ruby:alpine
|
||
|
|
||
|
# install libraries
|
||
|
RUN apk add --update build-base libxml2-dev libffi-dev
|
||
|
|
||
|
# copy gems
|
||
|
COPY install /install
|
||
|
RUN cd /install && sh bootstrap.sh
|
||
|
|
||
|
COPY filesystem /filesystem
|
||
|
|
||
|
WORKDIR /filesystem
|
||
|
CMD ["/bin/sh"]
|