Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Aug 10, 2023
1 parent 0e8575a commit 21a871c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
context: ./src
args:
UPSTREAM_VERSION: v0.21.0
image: "ipfs.dnp.dappnode.eth:0.2.16"
image: "ipfs.dnp.dappnode.eth:0.2.20"
restart: unless-stopped
volumes:
- "ipfsdnpdappnodeeth_export:/export"
Expand Down
4 changes: 3 additions & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ARG UPSTREAM_VERSION

# Create intermediate container for the fs-repo-migrations binary. Use a lightweight alpine image
FROM alpine:3.14.2 as fs-repo-migrations
# copy the migrations binary from the url https://dist.ipfs.tech/fs-repo-migrations/v2.0.2/fs-repo-migrations_v2.0.2_darwin-arm64.tar.gz
Expand All @@ -7,7 +9,7 @@ RUN wget https://dist.ipfs.tech/fs-repo-migrations/v2.0.2/fs-repo-migrations_v2.
mv fs-repo-migrations/fs-repo-migrations /usr/local/bin/ && \
rm -rf fs-repo-migrations_v2.0.2_linux-amd64.tar.gz fs-repo-migrations

ARG UPSTREAM_VERSION

FROM ipfs/kubo:${UPSTREAM_VERSION}
COPY dappnode_entrypoint.sh /usr/local/bin/
COPY --from=fs-repo-migrations /usr/local/bin/fs-repo-migrations /usr/local/bin/
Expand Down

0 comments on commit 21a871c

Please sign in to comment.