Skip to content

Commit

Permalink
Upgrade Node.js, SQLite, and LibRaw versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Sep 10, 2024
1 parent 6ab9ca8 commit d4e5580
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.11-alpine as builder
FROM node:20.17-alpine as builder

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker Images

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# 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 a4c9b1981ee4ac2a144e7a290988428cc5bb7e85 \
&& git checkout --force 70f511871e002942d3e6b60c99fe04ce5c0c605b \
&& 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/2024/sqlite-autoconf-3450200.tar.gz | tar -xz --strip 1 \
&& curl https://sqlite.org/2024/sqlite-autoconf-3460100.tar.gz | tar -xz --strip 1 \
&& ./configure --disable-readline \
&& make -j `nproc` \
&& strip sqlite3 \
Expand Down

0 comments on commit d4e5580

Please sign in to comment.