Skip to content

Commit d54b4dc

Browse files
committed
fix dependency error
1 parent e80a25e commit d54b4dc

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

build/dockerfiles/beacon-chain_file.Dockerfile

+1-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@ ADD . /prysm
1717
RUN cd /prysm/cmd/beacon-chain && CGO_ENABLED=1 go build -v -o /usr/local/bin/beacon-chain
1818

1919
# Pull Geth into a second stage deploy container
20-
FROM debian:bullseye-slim
21-
22-
RUN apt-get update && apt-get install -y \
23-
ca-certificates \
24-
libstdc++6 \
25-
libc-dev \
26-
&& apt-get clean \
27-
&& rm -rf /var/lib/apt/lists/*
20+
FROM debian:latest
2821

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

build/dockerfiles/validator_file.Dockerfile

+1-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@ ADD . /prysm
1717
RUN cd /prysm/cmd/validator && CGO_ENABLED=1 go build -v -o /usr/local/bin/validator
1818

1919
# Pull Geth into a second stage deploy container
20-
FROM debian:bullseye-slim
21-
22-
RUN apt-get update && apt-get install -y \
23-
ca-certificates \
24-
libstdc++6 \
25-
libc-dev \
26-
&& apt-get clean \
27-
&& rm -rf /var/lib/apt/lists/*
20+
FROM debian:latest
2821

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

0 commit comments

Comments
 (0)