Skip to content

Commit cce225a

Browse files
authored
try to use bullseye instead of alpine (#598)
1 parent 768e127 commit cce225a

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

starship/docker/chains/Dockerfile.eth-beacon

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@ ARG BASE_IMAGE
22
ARG VERSION
33
FROM ${BASE_IMAGE}:${VERSION} AS source
44

5-
FROM alpine:3.17
5+
FROM golang:1.21-bullseye
66

77
LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship"
88

99
COPY --from=source /beacon-chain /usr/bin
1010

11-
# Set up dependencies
12-
ENV PACKAGES curl make bash jq sed
13-
14-
# Install minimum necessary dependencies
15-
RUN apk add --no-cache $PACKAGES
11+
RUN apt-get update && apt-get install -y \
12+
jq \
13+
curl \
14+
make \
15+
bash \
16+
jq \
17+
sed \
18+
build-essential \
19+
ca-certificates \
20+
libssl-dev \
21+
unzip \
22+
zip \
23+
&& rm -rf /var/lib/apt/lists/*
1624

1725
WORKDIR /opt

0 commit comments

Comments
 (0)