File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ /.idea /
Original file line number Diff line number Diff line change 1+ FROM ubuntu:jammy
2+
3+ RUN cd /tmp \
4+ && apt update \
5+ && apt install -y curl git openjdk-17-jdk zip unzip tini \
6+ && apt clean \
7+ && curl -o /usr/local/share/ca-certificates/customcert.crt http://pki.jlab.org/JLabCA.crt \
8+ && update-ca-certificates \
9+ && curl -O https://raw.githubusercontent.com/devcontainers/features/main/src/docker-outside-of-docker/install.sh \
10+ && chmod +x /tmp/install.sh \
11+ && /tmp/install.sh \
12+ && curl -s "https://get.sdkman.io" | bash \
13+ && bash -c "source /root/.sdkman/bin/sdkman-init.sh; sdk install gradle 7.4"
14+
15+ ENV TZ=America/New_York
16+ ENTRYPOINT ["/usr/bin/tini" , "--" ]
17+ CMD ["sleep" , "infinity" ]
You can’t perform that action at this time.
0 commit comments