Skip to content

Commit

Permalink
checkstyle: fix build
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski committed Jul 11, 2023
1 parent 330cc0c commit 844058a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion projects/checkstyle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
#
##########################################################################
FROM gcr.io/oss-fuzz-base/base-builder-jvm
RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && unzip maven.zip -d $SRC/maven && rm -rf maven.zip
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip \
-o maven.zip && \
unzip maven.zip -d $SRC/maven && \
rm maven.zip
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
RUN git clone --depth 1 https://github.com/checkstyle/checkstyle checkstyle
COPY *.sh *Fuzzer.java $SRC/
Expand Down

0 comments on commit 844058a

Please sign in to comment.