Skip to content

Commit a0c4008

Browse files
mblanco-denodotdcmeehan
authored andcommitted
Added Presto Java dev container
1 parent 212f9c0 commit a0c4008

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.devcontainer/Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM ubuntu:24.04
2+
3+
# Install necessary tools
4+
RUN apt-get update && apt-get install -y \
5+
# Intellij IDEA dev container prerequisites
6+
curl \
7+
git \
8+
unzip \
9+
# Java 8 and 17 jdk
10+
openjdk-8-jdk \
11+
openjdk-17-jdk \
12+
# for documentation
13+
python3 \
14+
python3-pip \
15+
python3.12-venv \
16+
fonts-freefont-otf \
17+
xindy
18+

.devcontainer/devcontainer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "PrestoDB Dev Container",
3+
"build": {
4+
"dockerfile": "Dockerfile"
5+
}
6+
}

0 commit comments

Comments
 (0)