Skip to content

Commit

Permalink
fix dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp committed Jun 10, 2024
1 parent e80a25e commit d54b4dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions build/dockerfiles/beacon-chain_file.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,7 @@ ADD . /prysm
RUN cd /prysm/cmd/beacon-chain && CGO_ENABLED=1 go build -v -o /usr/local/bin/beacon-chain

# Pull Geth into a second stage deploy container
FROM debian:bullseye-slim

RUN apt-get update && apt-get install -y \
ca-certificates \
libstdc++6 \
libc-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
FROM debian:latest

COPY --from=builder /usr/local/bin/beacon-chain /usr/local/bin/

Expand Down
9 changes: 1 addition & 8 deletions build/dockerfiles/validator_file.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,7 @@ ADD . /prysm
RUN cd /prysm/cmd/validator && CGO_ENABLED=1 go build -v -o /usr/local/bin/validator

# Pull Geth into a second stage deploy container
FROM debian:bullseye-slim

RUN apt-get update && apt-get install -y \
ca-certificates \
libstdc++6 \
libc-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
FROM debian:latest

COPY --from=builder /usr/local/bin/validator /usr/local/bin/

Expand Down

0 comments on commit d54b4dc

Please sign in to comment.