Skip to content

Commit

Permalink
Merge pull request #27 from konstructio/step1
Browse files Browse the repository at this point in the history
wget instead of curl
  • Loading branch information
johndietz authored Sep 9, 2024
2 parents 64ec818 + 88c7ff2 commit 6213bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.13.1

RUN apk add --no-cache util-linux curl
RUN apk add --no-cache util-linux wget

ARG COLONY_SCOUT_VERSION=0.0.10-rc11
RUN curl -L -o colony-scout.tar.gz https://objectstore.nyc1.civo.com/konstruct-assets/colony-scout/v${COLONY_SCOUT_VERSION}/colony-scout_\ ${COLONY_SCOUT_VERSION}_Linux_x86_64.tar.gz && \
RUN wget https://objectstore.nyc1.civo.com/konstruct-assets/colony-scout/v0.0.10-rc11/colony-scout_\ 0.0.10-rc11_Linux_x86_64.tar.gz && \
tar -xzvf colony-scout.tar.gz && \
chmod +x colony-scout && \
mv colony-scout /usr/local/bin/
Expand Down

0 comments on commit 6213bba

Please sign in to comment.