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 33b5962 + c6bc0b8 commit 0563c4aCopy full SHA for 0563c4a
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