Skip to content

Commit

Permalink
Fixes cc-archive#487(removed extra jq install cmds to use travis buil…
Browse files Browse the repository at this point in the history
…t in jq)
  • Loading branch information
madewithkode committed May 15, 2020
1 parent ee92b11 commit ed4c0d1
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions ingestion_server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ed4c0d1

Please sign in to comment.