Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM ubuntu:24.04

# Install necessary tools
RUN apt-get update && apt-get install -y \
# Intellij IDEA dev container prerequisites
curl \
git \
unzip \
# Java 8 and 17 jdk
openjdk-8-jdk \
openjdk-17-jdk \
# for documentation
python3 \
python3-pip \
python3.12-venv \
fonts-freefont-otf \
xindy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's this for?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


6 changes: 6 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "PrestoDB Dev Container",
"build": {
"dockerfile": "Dockerfile"
}
}
Loading