aboutsummaryrefslogtreecommitdiff
path: root/ci/mill/Dockerfile
blob: af1ba37ab2fe3ec820f0166b4f0db5d6ce819931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
FROM debian:bullseye

RUN apt-get update && apt-get install --yes \
        curl \
        openjdk-11-jdk \
    && rm -rf /var/lib/apt/lists/*

RUN curl -L https://github.com/lihaoyi/mill/releases/download/0.5.1/0.5.1 > \
    /usr/local/bin/mill \
    && chmod +x /usr/local/bin/mill

ENTRYPOINT [ "/usr/local/bin/mill" ]