Skip to content

Commit

Permalink
Update go-ipfs 0.13 to kubo 0.14 for #774
Browse files Browse the repository at this point in the history
  • Loading branch information
machawk1 committed Jul 21, 2022
1 parent 0438142 commit 5d55368
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- "3.9"
- "3.10"
ipfs:
- "0.11"
- "0.12"
- "0.13"
- "0.14"
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }}
steps:
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ RUN mkdir -p /data/{warc,cdxj,ipfs}

# Download and install IPFS
ENV IPFS_PATH=/data/ipfs
ARG IPFS_VERSION=v0.13.0
ARG IPFS_VERSION=v0.14.0
RUN cd /tmp \
&& wget -q https://dist.ipfs.io/go-ipfs/${IPFS_VERSION}/go-ipfs_${IPFS_VERSION}_linux-amd64.tar.gz \
&& tar xvfz go-ipfs*.tar.gz \
&& mv go-ipfs/ipfs /usr/local/bin/ipfs \
&& rm -rf go-ipfs* \
&& wget -q https://dist.ipfs.io/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-amd64.tar.gz \
&& tar xvfz kubo*.tar.gz \
&& mv kubo/ipfs /usr/local/bin/ipfs \
&& rm -rf kubos* \
&& ipfs init

# Make necessary changes to prepare the environment for IPWB
Expand Down

0 comments on commit 5d55368

Please sign in to comment.