Skip to content

Commit

Permalink
Dockerfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshicho committed Jan 21, 2020
1 parent 904dc7c commit a2080ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM openjdk:12-alpine

ENV REDPEN_VERSION 1.10.4

ENV REDPEN_VERSION=1.10.4
ENV REVIEWDOG_VERSION=v0.9.16
RUN apk --update add git curl jq wget && \
rm -rf /var/lib/apt/lists/* && \
rm /var/cache/apk/*
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ v0.9.16
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
RUN curl -sL https://api.github.com/repos/redpen-cc/redpen/releases/tags/redpen-${REDPEN_VERSION} -o - \
| jq -r .assets[].browser_download_url \
| grep -i "tar.gz" \
Expand Down

0 comments on commit a2080ab

Please sign in to comment.