Skip to content

Commit

Permalink
Merge pull request #14 from dappnode/pablomendezroyo-patch-1
Browse files Browse the repository at this point in the history
Keep v from upstream version and use erigontech/erigon
  • Loading branch information
pablomendezroyo authored Oct 29, 2024
2 parents ea6773b + f05691f commit 7d51438
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions erigon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
ARG UPSTREAM_VERSION

# Removes the v prefix from the version
FROM thorax/erigon:${UPSTREAM_VERSION#v}
FROM erigontech/erigon:${UPSTREAM_VERSION}

ARG NETWORK
ARG P2P_PORT
Expand All @@ -20,7 +19,7 @@ USER root

COPY entrypoint.sh /usr/local/bin/entrypoint.sh

RUN apk update && apk add curl && \
RUN apt-get update && apt-get install -y curl && \
chmod +rx /usr/local/bin/entrypoint.sh /etc/profile.d/execution_tools.sh

ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]

0 comments on commit 7d51438

Please sign in to comment.