2021-06-21 19:16:51 +03:00
|
|
|
# Support setting various labels on the final image
|
|
|
|
ARG COMMIT=""
|
|
|
|
ARG VERSION=""
|
|
|
|
ARG BUILDNUM=""
|
|
|
|
|
2017-09-05 12:16:59 +03:00
|
|
|
# Build Geth in a stock Go builder container
|
2021-08-25 16:18:31 +03:00
|
|
|
FROM golang:1.17-alpine as builder
|
2017-09-05 12:16:59 +03:00
|
|
|
|
2020-11-13 15:35:17 +03:00
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers git bash
|
2022-05-03 12:17:24 +03:00
|
|
|
# Get dependencies - will also be cached if we won't change go.mod/go.sum
|
|
|
|
COPY go.mod /go-ethereum/
|
|
|
|
COPY go.sum /go-ethereum/
|
|
|
|
RUN cd /go-ethereum && go mod download
|
2020-11-13 15:35:17 +03:00
|
|
|
|
2016-11-15 20:57:56 +03:00
|
|
|
ADD . /go-ethereum
|
2021-07-06 09:29:55 +03:00
|
|
|
RUN cd /go-ethereum && go run build/ci.go install ./cmd/geth
|
2017-09-05 12:16:59 +03:00
|
|
|
|
|
|
|
# Pull Geth into a second stage deploy alpine container
|
2022-07-20 07:07:00 +03:00
|
|
|
FROM alpine:3.16.0
|
|
|
|
|
|
|
|
ARG BSC_USER=bsc
|
|
|
|
ARG BSC_USER_UID=1000
|
|
|
|
ARG BSC_USER_GID=1000
|
|
|
|
|
|
|
|
ENV BSC_HOME=/bsc
|
|
|
|
ENV HOME=${BSC_HOME}
|
|
|
|
ENV DATA_DIR=/data
|
|
|
|
|
2022-09-26 12:31:16 +03:00
|
|
|
ENV PACKAGES ca-certificates~=20220614-r0 jq~=1.6 \
|
2022-10-31 10:04:13 +03:00
|
|
|
bash~=5.1.16-r2 bind-tools~=9.16.33 tini~=0.19.0 \
|
2022-11-02 14:55:42 +03:00
|
|
|
grep~=3.7 curl~=7.83.1 sed~=4.8-r0
|
2022-07-20 07:07:00 +03:00
|
|
|
|
|
|
|
RUN apk add --no-cache $PACKAGES \
|
|
|
|
&& rm -rf /var/cache/apk/* \
|
|
|
|
&& addgroup -g ${BSC_USER_GID} ${BSC_USER} \
|
|
|
|
&& adduser -u ${BSC_USER_UID} -G ${BSC_USER} --shell /sbin/nologin --no-create-home -D ${BSC_USER} \
|
|
|
|
&& addgroup ${BSC_USER} tty \
|
|
|
|
&& sed -i -e "s/bin\/sh/bin\/bash/" /etc/passwd
|
|
|
|
|
|
|
|
RUN echo "[ ! -z \"\$TERM\" -a -r /etc/motd ] && cat /etc/motd" >> /etc/bash/bashrc
|
|
|
|
|
|
|
|
WORKDIR ${BSC_HOME}
|
2016-11-15 20:57:56 +03:00
|
|
|
|
2017-09-05 12:16:59 +03:00
|
|
|
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
|
2016-11-15 20:57:56 +03:00
|
|
|
|
2022-07-20 07:07:00 +03:00
|
|
|
COPY docker-entrypoint.sh ./
|
2021-06-21 19:16:51 +03:00
|
|
|
|
2022-07-20 07:07:00 +03:00
|
|
|
RUN chmod +x docker-entrypoint.sh \
|
|
|
|
&& mkdir -p ${DATA_DIR} \
|
|
|
|
&& chown -R ${BSC_USER_UID}:${BSC_USER_GID} ${BSC_HOME} ${DATA_DIR}
|
|
|
|
|
|
|
|
VOLUME ${DATA_DIR}
|
|
|
|
|
|
|
|
USER ${BSC_USER_UID}:${BSC_USER_GID}
|
|
|
|
|
|
|
|
# rpc ws graphql
|
|
|
|
EXPOSE 8545 8546 8547 30303 30303/udp
|
2021-06-21 19:16:51 +03:00
|
|
|
|
2022-07-20 07:07:00 +03:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--", "./docker-entrypoint.sh"]
|