checkstyle-docker/Dockerfile

9 lines
271 B
Text
Raw Normal View History

2017-07-07 02:18:26 +02:00
FROM openjdk:8
2017-07-07 01:03:20 +02:00
RUN apt-get update -yqq && apt-get install -yqq curl
2019-01-21 08:23:06 +01:00
RUN curl -L https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.16/checkstyle-8.16-all.jar > /checkstyle.jar
2017-07-07 01:03:20 +02:00
ADD checkstyle.sh /usr/bin/checkstyle
RUN chmod +x /usr/bin/checkstyle