Skip to content

Commit 6277163

Browse files
committed
update Node.js to version 22.19.0 and SQLite amalgamation to version 3500400
1 parent db34138 commit 6277163

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN cd /tmp && \
3636
# https://github.com/tj/n#installation
3737
RUN curl --location https://raw.githubusercontent.com/tj/n/master/bin/n --output /usr/local/bin/n && \
3838
chmod a+x /usr/local/bin/n && \
39-
n 22.16.0
39+
n 22.19.0
4040

4141

4242
# Install Node.js packages
@@ -117,14 +117,14 @@ 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-3490200.zip && \
121-
unzip sqlite-amalgamation-3490200.zip && \
122-
rm --force sqlite-amalgamation-3490200.zip && \
123-
cd sqlite-amalgamation-3490200 && \
120+
curl --remote-name https://www.sqlite.org/2025/sqlite-amalgamation-3500400.zip && \
121+
unzip sqlite-amalgamation-3500400.zip && \
122+
rm --force sqlite-amalgamation-3500400.zip && \
123+
cd sqlite-amalgamation-3500400 && \
124124
patch shell.c < /tmp/shell.c.patch && \
125125
gcc -D HAVE_READLINE -D SQLITE_DEFAULT_FOREIGN_KEYS=1 -D SQLITE_OMIT_DYNAPROMPT=1 shell.c sqlite3.c -lpthread -ldl -lm -lreadline -lncurses -o /usr/local/bin/sqlite3 && \
126126
cd .. && \
127-
rm --force --recursive sqlite-amalgamation-3490200 && \
127+
rm --force --recursive sqlite-amalgamation-3500400 && \
128128
rm --force /tmp/shell.c.patch
129129
130130

shell.c.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@@ -33502,10 +33502,6 @@
1+
@@ -33794,10 +33794,6 @@
22
char *zHome;
33
char *zHistory;
44
int nHistory;

0 commit comments

Comments
 (0)