Skip to content

Commit 6da5699

Browse files
committed
fix(Dockerfile): update Node.js version and LibRaw/SQLite tarball URLs
1 parent 7bbdc8b commit 6da5699

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://forum.photostructure.com/
66

77
# See https://hub.docker.com/_/node/
8-
FROM node:22.14-alpine AS builder
8+
FROM node:24-alpine AS builder
99

1010
# https://docs.docker.com/develop/develop-images/multistage-build/
1111

@@ -42,7 +42,7 @@ RUN apk update ; apk upgrade ; apk add --no-cache \
4242
&& mkdir -p /opt/photostructure/tools \
4343
&& mkdir -p /tmp/libraw \
4444
&& cd /tmp/libraw \
45-
&& curl -L https://api.github.com/repos/LibRaw/LibRaw/tarball/09bea31181b43e97959ee5452d91e5bc66365f1f | tar -xz --strip 1 \
45+
&& curl -L https://api.github.com/repos/LibRaw/LibRaw/tarball/0339685891bd485c3568309aaba369afd29bbacd | tar -xz --strip 1 \
4646
&& autoreconf -fiv \
4747
&& ./configure --prefix=/opt/photostructure/tools \
4848
&& make -j `nproc` \
@@ -52,7 +52,7 @@ RUN apk update ; apk upgrade ; apk add --no-cache \
5252
&& rm -rf /tmp/libraw \
5353
&& mkdir -p /tmp/sqlite \
5454
&& cd /tmp/sqlite \
55-
&& curl https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz | tar -xz --strip 1 \
55+
&& curl https://sqlite.org/2025/sqlite-autoconf-3510100.tar.gz | tar -xz --strip 1 \
5656
&& ./configure --disable-readline \
5757
&& make -j `nproc` \
5858
&& strip sqlite3 \

0 commit comments

Comments
 (0)