Merge pull request #3998 from ScribblerCoder/patch-1

fix: Dockerfile Healthcheck unexpected exit code
This commit is contained in:
Timothy Jaeryang Baek 2024-08-02 17:56:27 +02:00 committed by GitHub
commit 4c1a9380e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,7 +151,7 @@ COPY --chown=$UID:$GID ./backend .
EXPOSE 8080 EXPOSE 8080
HEALTHCHECK CMD curl --silent --fail http://localhost:8080/health | jq -e '.status == true' || exit 1 HEALTHCHECK CMD curl --silent --fail http://localhost:${PORT:-8080}/health | jq -ne 'input.status == true' || exit 1
USER $UID:$GID USER $UID:$GID