From bf311d62526b1dbcb9e74f1d9867658fa0fa9fe9 Mon Sep 17 00:00:00 2001 From: Alan Grainger Date: Thu, 31 Oct 2024 19:24:39 +0100 Subject: [PATCH] Update base image to node:lts-slim --- healthcheck.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/healthcheck.js b/healthcheck.js index ce5e962..2cdd4ee 100644 --- a/healthcheck.js +++ b/healthcheck.js @@ -1,6 +1,6 @@ (async () => { - require('dotenv').config() try { + require('dotenv').config() const res = await fetch(process.env.PROXY_PUBLIC_URL + '/healthcheck') if (await res.text() === 'ok') { process.exit(0) diff --git a/package.json b/package.json index f93b234..e1996df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "immich-public-proxy", - "version": "1.2.1", + "version": "1.2.2", "main": "dist/index.js", "scripts": { "dev": "ts-node src/index.ts",