Skip to content

Commit 9584fb0

Browse files
committed
fix(build): don't mkdir network-keys dir
prysm beacon client expects network keys to be in a `/val-data/consensus/beacon/network-keys` file instead of a file in that directory.
1 parent 3e77abb commit 9584fb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.dev

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN apk update &&\
3030
libc6-compat
3131

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

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

5454
# Define entrypoint
55-
ENTRYPOINT ["/entrypoint.sh"]
55+
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)