Skip to content

Commit bbab40b

Browse files
committed
fixed Java, SQLite paths
1 parent fefc561 commit bbab40b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt update && \
2222
# https://jdk.java.net/25/
2323
RUN cd /tmp && \
2424
if [ "$BUILDARCH" = "arm64" ]; then ARCH="aarch64"; else ARCH="x64"; fi && \
25-
curl --remote-name https://download.java.net/java/GA/jdk25.0.2/b1e0dfa218384cb9959bdcb897162d4e/10/GPL/openjdk-25.0.2_linux-${ARCH}.tar.gz && \
25+
curl --remote-name https://download.java.net/java/GA/jdk25.0.2/b1e0dfa218384cb9959bdcb897162d4e/10/GPL/openjdk-25.0.2_linux-${ARCH}_bin.tar.gz && \
2626
tar xzf openjdk-25.0.2_linux-${ARCH}_bin.tar.gz && \
2727
rm --force openjdk-25.0.2_linux-${ARCH}_bin.tar.gz && \
2828
mv jdk-25.0.2 /opt/jdk && \
@@ -117,7 +117,7 @@ RUN echo "gem: --no-document" > /etc/gemrc && \
117117
# https://www.sqlite.org/howtocompile.html#compiling_the_command_line_interface
118118
COPY shell.c.patch /tmp
119119
RUN cd /tmp && \
120-
curl --remote-name https://www.sqlite.org/2025/sqlite-amalgamation-3510200.zip && \
120+
curl --remote-name https://www.sqlite.org/2026/sqlite-amalgamation-3510200.zip && \
121121
unzip sqlite-amalgamation-3510200.zip && \
122122
rm --force sqlite-amalgamation-3510200.zip && \
123123
cd sqlite-amalgamation-3510200 && \

0 commit comments

Comments
 (0)