Created
October 10, 2019 01:00
-
-
Save saurabhthareja90/79f6c7258e429b6765c0d977fe16f4e8 to your computer and use it in GitHub Desktop.
Revisions
-
saurabhthareja90 created this gist
Oct 10, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ 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"]