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
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM mcr.microsoft.com/vscode/devcontainers/python:3.13
USER vscode
RUN curl -s "https://get.sdkman.io" | bash
SHELL ["/bin/bash", "-c"]
RUN source "/home/vscode/.sdkman/bin/sdkman-init.sh" && sdk install java 25-graalce
RUN bash -c "source $HOME/.sdkman/bin/sdkman-init.sh && \
sdk install java 25-graalce"
RUN mkdir -p ~/lib && cd ~/lib && curl -L -O http://www.antlr.org/download/antlr-4.13.2-complete.jar
ENV ANTLR_JAR="~/lib/antlr-4.13.1-complete.jar"
ENV ANTLR_JAR="~/lib/antlr-4.13.2-complete.jar"
# protoc 29.5 is the last version with protobuf python v5 which is compatible with protoletariat v3
RUN cd ~ && curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v29.5/protoc-29.5-linux-x86_64.zip && \
unzip protoc-29.5-linux-x86_64.zip -d ~/.local && \
Expand Down
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"name": "substrait-python-devcontainer",
"build": {
"context": "..",
"dockerfile": "Dockerfile",
"options": ["--format=docker"]
"dockerfile": "Dockerfile"
},

// Features to add to the dev container. More info: https://containers.dev/features.
Expand Down