Removed tini because it seems to not work on arm devices
All checks were successful
Building and publishing Homebrewery as Docker Image / build (release) Successful in 11m42s

This commit is contained in:
Florian Weber 2025-06-26 09:53:18 +02:00
parent 74a4557724
commit 81fd807a71
Signed by: f.weber
GPG Key ID: A1C85EB19014A2D3
2 changed files with 1 additions and 6 deletions

View File

@ -41,11 +41,6 @@ ENV HB_HOST=homebrewery.local.naturalcrit.com:8000 HB_NATURALCRIT_URL=local.natu
ENV HB_ENABLE_THEMES=true HB_PUBLIC_URL=https://homebrewery.naturalcrit.com HB_DB_URI=mongodb://mongodb/homebrewery
ENV HB_IMAGES=null HB_FONTS=null
# Adding tini for clean signal handling
ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
# Adding Entrypoint
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

View File

@ -32,4 +32,4 @@ fi
# Start Homebrewery
echo "Starting Homebrewery..."
exec /tini -s -g -- node --experimental-require-module "$@" server.js
exec /usr/local/bin/npm start "$@"