Skip to content

Commit

Permalink
upgrade node, sqlite, and libraw
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Mar 21, 2024
1 parent 19e8701 commit a65d8a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# <https://forum.photostructure.com/>

# See https://hub.docker.com/_/node/
FROM node:20.10.0-alpine as builder
FROM node:20.11-alpine as builder

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

Expand Down Expand Up @@ -37,7 +37,7 @@ RUN apk update ; apk upgrade ; apk add --no-cache \
&& mkdir -p /opt/photostructure/tools \
&& git clone https://github.com/LibRaw/LibRaw.git /tmp/libraw \
&& cd /tmp/libraw \
&& git checkout --force 41506ef73e33c5e0c3b94608cce2481d92003d5d \
&& git checkout --force a4c9b1981ee4ac2a144e7a290988428cc5bb7e85 \
&& autoreconf -fiv \
&& ./configure --prefix=/opt/photostructure/tools \
&& make -j `nproc` \
Expand All @@ -48,7 +48,7 @@ RUN apk update ; apk upgrade ; apk add --no-cache \
&& rm -rf /tmp/libraw \
&& mkdir -p /tmp/sqlite \
&& cd /tmp/sqlite \
&& curl https://sqlite.org/2023/sqlite-autoconf-3440200.tar.gz | tar -xz --strip 1 \
&& curl https://sqlite.org/2024/sqlite-autoconf-3450200.tar.gz | tar -xz --strip 1 \
&& ./configure --disable-readline \
&& make -j `nproc` \
&& strip sqlite3 \
Expand Down

0 comments on commit a65d8a6

Please sign in to comment.