Skip to content

Instantly share code, notes, and snippets.

@saurabhthareja90
Created October 10, 2019 01:00
Show Gist options
  • Save saurabhthareja90/79f6c7258e429b6765c0d977fe16f4e8 to your computer and use it in GitHub Desktop.
Save saurabhthareja90/79f6c7258e429b6765c0d977fe16f4e8 to your computer and use it in GitHub Desktop.

Revisions

  1. saurabhthareja90 created this gist Oct 10, 2019.
    11 changes: 11 additions & 0 deletions Dockerfile
    Original 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"]