1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 03:41:58 +00:00

Update Dockerfile

This commit is contained in:
Alan Grainger 2024-11-16 13:49:17 +01:00 committed by GitHub
parent 6ace375a5d
commit 18e6108e49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,6 +27,6 @@ ENV NODE_ENV=production
# Type checking is done in the repo before building the image.
RUN npx tsc --noCheck
HEALTHCHECK --interval=30s --start-period=10s --timeout=5s CMD wget -q http://localhost:3000/healthcheck || exit 1
HEALTHCHECK --interval=30s --start-period=10s --timeout=5s CMD wget -q --spider http://localhost:3000/healthcheck || exit 1
CMD ["pm2-runtime", "dist/index.js" ]