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 8fa7a17 commit 3966869Copy full SHA for 3966869
.devcontainer/Dockerfile
@@ -0,0 +1,24 @@
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
+ texlive-fonts-recommended \
17
+ texlive-latex-recommended \
18
+ texlive-latex-extra \
19
+ latexmk \
20
+ tex-gyre \
21
+ texlive-xetex \
22
+ fonts-freefont-otf \
23
+ xindy
24
.devcontainer/devcontainer.json
@@ -0,0 +1,6 @@
+{
+ "name": "PrestoDB Dev Container",
+ "build": {
+ "dockerfile": "Dockerfile"
+ }
+}
0 commit comments