diff --git a/Dockerfile b/Dockerfile index 8fbd6ab..82bd278 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,6 @@ COPY . . EXPOSE 8000 HEALTHCHECK --interval=30s --timeout=3s --start-period=30s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:8000/health || exit 1 + CMD wget --method=GET --no-verbose --tries=1 --spider http://localhost:8000/health || exit 1 CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file