Skip to content

Commit 3b93a31

Browse files
committed
initial commit
1 parent 000aa7f commit 3b93a31

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea/

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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"]

0 commit comments

Comments
 (0)