sonarqube/Dockerfile

9 lines
71 B
Docker

FROM ruby:2.7
WORKDIR /app
COPY . ./
RUN bundle install
CMD ["irb"]