We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 000aa7f commit 3b93a31Copy full SHA for 3b93a31
2 files changed
.gitignore
@@ -0,0 +1 @@
1
+/.idea/
Dockerfile
@@ -0,0 +1,17 @@
+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"]
0 commit comments