diff --git a/docker/Dockerfile b/docker/Dockerfile index d16ae1b8..17bbd6be 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -81,7 +81,10 @@ RUN apt-get update && \ WORKDIR /opt/fiware-pep-steelskin # hadolint ignore=DL3008,DL3009,DL3015 RUN \ - # Ensure that Git is installed prior to running npm install + # Ensure that Git is installed prior to running npm install. + # curl is added here (again) because the RUN ... above is usually + # removed for local testing, and and curl is required for + # docker health-checks. apt-get update && \ apt-get install -y git curl && \ echo "INFO: npm install --production..." && \