We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbcd5b9 commit 6af1dbfCopy full SHA for 6af1dbf
.devcontainer/Dockerfile
@@ -3,13 +3,16 @@ COPY --from=ghcr.io/astral-sh/uv:0.6.14 /uv /uvx /bin/
3
ARG USERNAME=vscode
4
5
RUN apt-get update && \
6
- apt-get install -y --no-install-recommends libgdal-dev python3-dev && \
+ apt-get install -y --no-install-recommends libgdal-dev python3-dev openjdk-17-jdk && \
7
rm -rf /var/lib/apt/lists/*
8
9
RUN python3 -m pip install pipx --no-cache-dir
10
RUN python3 -m pipx ensurepath
11
RUN pipx install rust-just
12
13
+RUN echo 'export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java))))' >> /etc/profile.d/java.sh && \
14
+ echo 'export PATH=$JAVA_HOME/bin:$PATH' >> /etc/profile.d/java.sh
15
+
16
WORKDIR /app
17
18
# Enable bytecode compilation
0 commit comments