Created
October 10, 2019 01:00
-
-
Save saurabhthareja90/79f6c7258e429b6765c0d977fe16f4e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.6.5-alpine3.10 | |
RUN apk add --update --no-cache build-base | |
RUN gem install docker-api | |
RUN gem install rspec | |
RUN gem install rspec_junit_formatter | |
RUN gem install serverspec | |
ENTRYPOINT ["rspec"] | |
CMD ["-h"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment