inspec/www/tutorial/scripts/simulator/Dockerfile
2016-09-16 14:27:16 +02:00

13 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"]