We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768e127 commit cce225aCopy full SHA for cce225a
starship/docker/chains/Dockerfile.eth-beacon
@@ -2,16 +2,24 @@ ARG BASE_IMAGE
2
ARG VERSION
3
FROM ${BASE_IMAGE}:${VERSION} AS source
4
5
-FROM alpine:3.17
+FROM golang:1.21-bullseye
6
7
LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship"
8
9
COPY --from=source /beacon-chain /usr/bin
10
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
+RUN apt-get update && apt-get install -y \
+ jq \
+ curl \
+ make \
+ bash \
16
17
+ sed \
18
+ build-essential \
19
+ ca-certificates \
20
+ libssl-dev \
21
+ unzip \
22
+ zip \
23
+ && rm -rf /var/lib/apt/lists/*
24
25
WORKDIR /opt
0 commit comments