diff --git a/ingestion_server/Dockerfile b/ingestion_server/Dockerfile index abde9e42..104fed96 100644 --- a/ingestion_server/Dockerfile +++ b/ingestion_server/Dockerfile @@ -26,17 +26,3 @@ RUN pipenv install --deploy --system --dev USER supervisord EXPOSE 8001 CMD ["supervisord", "-c", "/ingestion_server/config/supervisord.conf"] - -# Install the jq tool to filter JSON data -ENV JQ_VERSION='1.5' - -RUN wget --no-check-certificate https://raw.githubusercontent.com/stedolan/jq/master/sig/jq-release.key -O /tmp/jq-release.key && \ - wget --no-check-certificate https://raw.githubusercontent.com/stedolan/jq/master/sig/v${JQ_VERSION}/jq-linux64.asc -O /tmp/jq-linux64.asc && \ - wget --no-check-certificate https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 -O /tmp/jq-linux64 && \ - gpg --import /tmp/jq-release.key && \ - gpg --verify /tmp/jq-linux64.asc /tmp/jq-linux64 && \ - cp /tmp/jq-linux64 /usr/bin/jq && \ - chmod +x /usr/bin/jq && \ - rm -f /tmp/jq-release.key && \ - rm -f /tmp/jq-linux64.asc && \ - rm -f /tmp/jq-linux64 \ No newline at end of file