Closed aarranz closed 5 years ago
This PR fixes healthcheck script on the dev image. Currently it has an extra CMD that makes docker use an incorrect healtcheck script:
CMD
HEALTHCHECK CMD --interval=3s \ CMD curl --fail http://localhost:8000/api/features || exit 1
The correct declaration is:
HEALTHCHECK --interval=3s \ CMD curl --fail http://localhost:8000/api/features || exit 1
This PR fixes healthcheck script on the dev image. Currently it has an extra
CMD
that makes docker use an incorrect healtcheck script:The correct declaration is: