We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28dcd2e + 0563c4a commit 8e5a9eeCopy full SHA for 8e5a9ee
Dockerfile
@@ -1,16 +1,16 @@
1
-FROM ruby:2.6-alpine
+FROM ruby:3.1-alpine
2
3
ENV REVIEWDOG_VERSION=v0.14.1
4
5
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
6
7
# hadolint ignore=DL3006
8
-RUN apk add --update --no-cache build-base git
+RUN apk --no-cache add git
9
10
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
11
12
13
-RUN gem install haml_lint
+RUN gem install haml_lint 'rubocop:~>1.31.2' rubocop-rails rubocop-performance rubocop-rake rubocop-rspec
14
15
COPY entrypoint.sh /entrypoint.sh
16
0 commit comments