Skip to content

Commit

Permalink
fix(build): don't mkdir network-keys dir
Browse files Browse the repository at this point in the history
prysm beacon client expects network keys to be in a `/val-data/consensus/beacon/network-keys` file instead of a file in that directory.
  • Loading branch information
dartdart26 committed Nov 26, 2024
1 parent 3e77abb commit 9584fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN apk update &&\
libc6-compat

# Create necessary directories
RUN mkdir -p /val-data /rpc-data /usr/share/devnet-resources /val-data/consensus/beacondata/network-keys
RUN mkdir -p /val-data /rpc-data /usr/share/devnet-resources /val-data/consensus/beacondata

# Copy built binaries and scripts from build
COPY --from=build /go-ethereum/bootnode /usr/bin/
Expand All @@ -52,4 +52,4 @@ WORKDIR /
ENV VALIDATOR_ACCOUNT=0x1181a1fb7b6de97d4cb06da82a0037df1ffe32d0

# Define entrypoint
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 9584fb0

Please sign in to comment.